2024-12-28 21:00:12 +01:00
|
|
|
{
|
|
|
|
|
"name": "crafter-build",
|
|
|
|
|
"configurations": [
|
|
|
|
|
{
|
|
|
|
|
"name": "base",
|
2025-11-15 19:20:33 +01:00
|
|
|
"interfaces": ["interfaces/Crafter.Build-Command", "interfaces/Crafter.Build-Configuration", "interfaces/Crafter.Build-Module", "interfaces/Crafter.Build-Project", "interfaces/Crafter.Build-Shader", "interfaces/Crafter.Build", "interfaces/Crafter.Build-Implementation", "interfaces/Crafter.Build-Test", "interfaces/Crafter.Build-CompileStatus"],
|
2026-03-01 14:57:47 +01:00
|
|
|
"implementations": ["implementations/Crafter.Build-Command", "implementations/Crafter.Build-Configuration", "implementations/Crafter.Build-Module", "implementations/Crafter.Build-Project", "implementations/Crafter.Build-Shader", "implementations/Crafter.Build-Implementation", "implementations/Crafter.Build-Test"]
|
2024-12-28 21:00:12 +01:00
|
|
|
},
|
2026-03-01 07:42:04 +01:00
|
|
|
{
|
2026-03-01 14:57:47 +01:00
|
|
|
"name": "libs-linux-gnu",
|
|
|
|
|
"target": "x86_64-pc-linux-gnu",
|
2026-03-01 07:42:04 +01:00
|
|
|
"libs": ["vulkan", "MachineIndependent", "OSDependent", "GenericCodeGen", "glslang", "glslang-default-resource-limits", "SPIRV", "tbb"]
|
|
|
|
|
},
|
2024-12-28 21:00:12 +01:00
|
|
|
{
|
2026-03-01 14:57:47 +01:00
|
|
|
"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"],
|
2025-10-31 16:50:47 +01:00
|
|
|
"implementations": ["implementations/main"]
|
2024-12-29 00:51:02 +01:00
|
|
|
},
|
|
|
|
|
{
|
2026-03-01 14:57:47 +01:00
|
|
|
"name": "executable-linux-gnu-debug",
|
|
|
|
|
"extends": ["executable-linux-gnu"],
|
2025-04-24 19:21:09 +02:00
|
|
|
"debug": true
|
2024-12-28 22:35:54 +01:00
|
|
|
},
|
|
|
|
|
{
|
2026-03-01 14:57:47 +01:00
|
|
|
"name": "lib-linux-gnu",
|
|
|
|
|
"extends": ["base", "libs-linux-gnu"],
|
2025-10-31 16:50:47 +01:00
|
|
|
"type":"library"
|
2024-12-29 00:51:02 +01:00
|
|
|
},
|
2025-11-01 06:50:41 +01:00
|
|
|
{
|
2026-03-01 14:57:47 +01:00
|
|
|
"name": "lib-linux-gnu-dev",
|
|
|
|
|
"extends": ["lib-linux-gnu"],
|
|
|
|
|
"debug": true
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"name": "executable-windows-msvc",
|
|
|
|
|
"extends": ["base", "libs-windows-msvc"],
|
|
|
|
|
"implementations": ["implementations/main"]
|
2025-11-01 06:50:41 +01:00
|
|
|
},
|
2024-12-29 00:51:02 +01:00
|
|
|
{
|
2026-03-01 14:57:47 +01:00
|
|
|
"name": "executable-windows-msvc-debug",
|
|
|
|
|
"extends": ["base", "libs-windows-msvc-debug"],
|
|
|
|
|
"implementations": ["implementations/main"],
|
|
|
|
|
"debug": true
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"name": "lib-windows-msvc",
|
|
|
|
|
"extends": ["base", "libs-windows-msvc"],
|
|
|
|
|
"type":"library",
|
|
|
|
|
"implementations": ["implementations/main"]
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"name": "lib-windows-msvc-debug",
|
|
|
|
|
"extends": ["base", "libs-windows-msvc-debug"],
|
|
|
|
|
"type":"library",
|
|
|
|
|
"implementations": ["implementations/main"],
|
2025-05-03 01:48:55 +02:00
|
|
|
"debug": true
|
2024-12-28 21:00:12 +01:00
|
|
|
}
|
|
|
|
|
]
|
2025-10-31 16:50:47 +01:00
|
|
|
}
|