Crafter.Build/project.json

49 lines
1.9 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"],
2025-10-31 16:50: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"],
"libs": ["vulkan", "MachineIndependent", "OSDependent", "GenericCodeGen", "glslang", "glslang-default-resource-limits", "SPIRV", "tbb"]
2024-12-28 21:00:12 +01:00
},
{
2024-12-29 00:51:02 +01:00
"name": "executable",
"extends": ["base"],
2024-12-29 17:53:46 +01:00
"type":"executable",
2025-10-31 16:50:47 +01:00
"implementations": ["implementations/main"]
2024-12-29 00:51:02 +01:00
},
{
2025-10-31 16:50:47 +01:00
"name": "executable-debug",
2024-12-29 00:51:02 +01:00
"extends": ["executable"],
2025-04-24 19:21:09 +02:00
"debug": true
2024-12-28 22:35:54 +01:00
},
{
2025-10-31 16:50:47 +01:00
"name": "lib",
"extends": ["base"],
"type":"library"
2024-12-29 00:51:02 +01:00
},
2025-11-01 06:50:41 +01:00
{
"name": "lib-shared",
"extends": ["base"],
"type":"shared-library"
},
2024-12-29 00:51:02 +01:00
{
2025-10-31 16:50:47 +01:00
"name": "lib-debug",
2024-12-29 00:51:02 +01:00
"extends": ["lib"],
2025-05-03 01:48:55 +02:00
"debug": true
2025-10-31 16:50:47 +01:00
}
],
"tests": [
2024-12-29 00:51:02 +01:00
{
2025-10-31 16:50:47 +01:00
"name": "should-compile",
2025-11-03 15:52:04 +01:00
"implementations": ["tests/ShouldCompile"],
2025-10-31 16:50:47 +01:00
"dependencies": [
{
"path":"./project.json",
2025-11-01 06:50:41 +01:00
"configuration":"lib-shared"
2025-10-31 16:50:47 +01:00
}
]
2024-12-28 21:00:12 +01:00
}
]
2025-10-31 16:50:47 +01:00
}