This commit is contained in:
parent
d98738fe68
commit
f85cb35f75
2 changed files with 14 additions and 28 deletions
40
project.json
40
project.json
|
|
@ -11,26 +11,13 @@
|
|||
"type": "cmake",
|
||||
"options": "-DENABLE_OPT=OFF"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "libs-linux-gnu",
|
||||
"target": "x86_64-pc-linux-gnu",
|
||||
],
|
||||
"libs": ["MachineIndependent", "OSDependent", "GenericCodeGen", "glslang", "glslang-default-resource-limits", "SPIRV"]
|
||||
},
|
||||
{
|
||||
"name": "libs-windows-msvc",
|
||||
"target": "x86_64-pc-windows-msvc",
|
||||
"libs": ["vulkan-1", "MachineIndependent", "OSDependent", "GenericCodeGen", "glslang", "glslang-default-resource-limits", "SPIRV", "SPIRV-Tools-opt", "SPIRV-Tools"]
|
||||
},
|
||||
{
|
||||
"name": "libs-windows-msvc-debug",
|
||||
"target": "x86_64-pc-windows-msvc",
|
||||
"libs": ["vulkan-1", "MachineIndependentd", "OSDependentd", "GenericCodeGend", "glslangd", "glslang-default-resource-limitsd", "SPIRVd", "SPIRV-Tools-optd", "SPIRV-Toolsd"]
|
||||
},
|
||||
{
|
||||
"name": "executable-linux-gnu",
|
||||
"extends": ["base", "libs-linux-gnu"],
|
||||
"target": "x86_64-pc-linux-gnu",
|
||||
"extends": ["base"],
|
||||
"implementations": ["implementations/main"]
|
||||
},
|
||||
{
|
||||
|
|
@ -40,36 +27,35 @@
|
|||
},
|
||||
{
|
||||
"name": "lib-linux-gnu",
|
||||
"extends": ["base", "libs-linux-gnu"],
|
||||
"target": "x86_64-pc-linux-gnu",
|
||||
"extends": ["base"],
|
||||
"type":"library"
|
||||
},
|
||||
{
|
||||
"name": "lib-linux-gnu-dev",
|
||||
"name": "lib-linux-gnu-debug",
|
||||
"extends": ["lib-linux-gnu"],
|
||||
"debug": true
|
||||
},
|
||||
{
|
||||
"name": "executable-windows-msvc",
|
||||
"extends": ["base", "libs-windows-msvc"],
|
||||
"target": "x86_64-pc-windows-msvc",
|
||||
"extends": ["base"],
|
||||
"implementations": ["implementations/main"]
|
||||
},
|
||||
{
|
||||
"name": "executable-windows-msvc-debug",
|
||||
"extends": ["base", "libs-windows-msvc-debug"],
|
||||
"implementations": ["implementations/main"],
|
||||
"extends": ["executable-windows-msvc"],
|
||||
"debug": true
|
||||
},
|
||||
{
|
||||
"name": "lib-windows-msvc",
|
||||
"extends": ["base", "libs-windows-msvc"],
|
||||
"type":"library",
|
||||
"implementations": ["implementations/main"]
|
||||
"target": "x86_64-pc-windows-msvc",
|
||||
"extends": ["base"],
|
||||
"type":"library"
|
||||
},
|
||||
{
|
||||
"name": "lib-windows-msvc-debug",
|
||||
"extends": ["base", "libs-windows-msvc-debug"],
|
||||
"type":"library",
|
||||
"implementations": ["implementations/main"],
|
||||
"extends": ["lib-windows-msvc"],
|
||||
"debug": true
|
||||
}
|
||||
]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue