vcpkg/ports/shaderwriter/vcpkg.json
Sylvain Doremus a2addd4bc5
[shaderwriter] Update to version 2.6.0. (#30521)
* [shaderwriter] Update to version 2.6.0.

* Now using vcpkg_check_features.
2023-03-30 12:00:44 -07:00

32 lines
661 B
JSON

{
"name": "shaderwriter",
"version": "2.6.0",
"description": "Library to write shaders directly from C++ code, supports GLSL, HLSL and SPIRV outputs.",
"homepage": "https://github.com/DragonJoker/ShaderWriter",
"license": "MIT",
"dependencies": [
{
"name": "vcpkg-cmake",
"host": true
},
{
"name": "vcpkg-cmake-config",
"host": true
}
],
"default-features": [
"spirv"
],
"features": {
"glsl": {
"description": "Compiles GLSL exporter."
},
"hlsl": {
"description": "Compiles HLSL exporter."
},
"spirv": {
"description": "Compiles SPIR-V exporter."
}
}
}