Crafter.Build/project.json

62 lines
2.4 KiB
JSON
Raw Normal View History

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-02 15:24:45 +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"],
"dependencies": [
{
"path": "https://github.com/KhronosGroup/glslang.git",
"type": "cmake",
"options": "-DENABLE_OPT=OFF"
}
2026-03-02 18:29:34 +01:00
],
2026-03-02 15:24:45 +01:00
"libs": ["MachineIndependent", "OSDependent", "GenericCodeGen", "glslang", "glslang-default-resource-limits", "SPIRV"]
2026-03-01 07:42:04 +01:00
},
2026-03-01 14:57:47 +01:00
{
"name": "executable-linux-gnu",
2026-03-02 18:29:34 +01:00
"target": "x86_64-pc-linux-gnu",
"extends": ["base"],
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",
2026-03-02 18:29:34 +01:00
"target": "x86_64-pc-linux-gnu",
"extends": ["base"],
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-02 18:29:34 +01:00
"name": "lib-linux-gnu-debug",
2026-03-01 14:57:47 +01:00
"extends": ["lib-linux-gnu"],
"debug": true
},
{
"name": "executable-windows-msvc",
2026-03-02 18:29:34 +01:00
"target": "x86_64-pc-windows-msvc",
"extends": ["base"],
2026-03-01 14:57:47 +01:00
"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",
2026-03-02 18:29:34 +01:00
"extends": ["executable-windows-msvc"],
2026-03-01 14:57:47 +01:00
"debug": true
},
{
"name": "lib-windows-msvc",
2026-03-02 18:29:34 +01:00
"target": "x86_64-pc-windows-msvc",
"extends": ["base"],
"type":"library"
2026-03-01 14:57:47 +01:00
},
{
"name": "lib-windows-msvc-debug",
2026-03-02 18:29:34 +01:00
"extends": ["lib-windows-msvc"],
2026-03-02 15:24:45 +01:00
"debug": true
2024-12-28 21:00:12 +01:00
}
]
2025-10-31 16:50:47 +01:00
}