diff options
| author | Ethan Morgan <ethan@gweithio.com> | 2026-02-14 16:44:06 +0000 |
|---|---|---|
| committer | Ethan Morgan <ethan@gweithio.com> | 2026-02-14 16:44:06 +0000 |
| commit | 54409423f767d8b1cf30cb7d0efca6b4ca138823 (patch) | |
| tree | d915ac7828703ce4b963efdd9728a1777ba18c1e /vcpkg/ports/bgfx/vcpkg.json | |
Diffstat (limited to 'vcpkg/ports/bgfx/vcpkg.json')
| -rw-r--r-- | vcpkg/ports/bgfx/vcpkg.json | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/vcpkg/ports/bgfx/vcpkg.json b/vcpkg/ports/bgfx/vcpkg.json new file mode 100644 index 0000000..b85b9b4 --- /dev/null +++ b/vcpkg/ports/bgfx/vcpkg.json @@ -0,0 +1,54 @@ +{ + "name": "bgfx", + "version": "1.129.8940-496", + "maintainers": "Sandy Carter <bwrsandman@users.noreply.github.com>", + "description": "Cross-platform, graphics API agnostic, Bring Your Own Engine/Framework style rendering library.", + "homepage": "https://bkaradzic.github.io/bgfx/overview.html", + "documentation": "https://bkaradzic.github.io/bgfx", + "license": "BSD-2-Clause AND CC0-1.0", + "supports": "!bsd", + "dependencies": [ + "libsquish", + "lodepng", + "mgnlibs", + "miniz", + "stb", + "tinyexr", + { + "name": "vcpkg-cmake", + "host": true + }, + { + "name": "vcpkg-cmake-config", + "host": true + } + ], + "default-features": [ + { + "name": "multithreaded", + "platform": "!emscripten" + } + ], + "features": { + "multithreaded": { + "description": "Encode and render on different threads", + "supports": "!emscripten" + }, + "tools": { + "$comment": "Use '\"host\": true' in dependencies of vcpkg.json in manifest mode.", + "description": "Shader, Texture and Geometry compilers for bgfx.", + "dependencies": [ + "cgltf", + { + "name": "glslang", + "features": [ + "opt" + ] + }, + "meshoptimizer", + "spirv-cross", + "spirv-tools" + ] + } + } +} |