2020-10-22 08:41:01 +08:00
|
|
|
{
|
|
|
|
"name": "shaderwriter",
|
2023-11-02 01:25:24 +08:00
|
|
|
"version": "2.7.0",
|
2020-10-22 08:41:01 +08:00
|
|
|
"description": "Library to write shaders directly from C++ code, supports GLSL, HLSL and SPIRV outputs.",
|
2022-01-26 14:26:41 +08:00
|
|
|
"homepage": "https://github.com/DragonJoker/ShaderWriter",
|
|
|
|
"license": "MIT",
|
|
|
|
"dependencies": [
|
|
|
|
{
|
|
|
|
"name": "vcpkg-cmake",
|
|
|
|
"host": true
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "vcpkg-cmake-config",
|
|
|
|
"host": true
|
|
|
|
}
|
2023-03-31 03:00:44 +08:00
|
|
|
],
|
|
|
|
"default-features": [
|
|
|
|
"spirv"
|
|
|
|
],
|
|
|
|
"features": {
|
|
|
|
"glsl": {
|
|
|
|
"description": "Compiles GLSL exporter."
|
|
|
|
},
|
|
|
|
"hlsl": {
|
|
|
|
"description": "Compiles HLSL exporter."
|
|
|
|
},
|
|
|
|
"spirv": {
|
|
|
|
"description": "Compiles SPIR-V exporter."
|
|
|
|
}
|
|
|
|
}
|
2020-10-22 08:41:01 +08:00
|
|
|
}
|