Crafter.Graphics/project.json

60 lines
2.4 KiB
JSON
Raw Normal View History

2025-04-16 00:43:33 +02:00
{
"name": "crafter-graphics",
"configurations": [
{
"name": "base",
"standard": "c++26",
2025-04-27 23:20:52 +02:00
"source_files": ["Crafter.Graphics-Window","Crafter.Graphics-WindowWayland","Crafter.Graphics-WindowWaylandWayland", "Crafter.Graphics-UiElement", "Crafter.Graphics-VulkanDevice", "Crafter.Graphics-WindowWaylandVulkan", "VulkanBuffer", "VulkanTools", "Crafter.Graphics-Camera"],
2025-04-16 00:43:33 +02:00
"c_files": ["wayland-xdg-decoration-unstable-v1-client-protocol", "xdg-shell-protocol", "shm"],
2025-04-27 23:20:52 +02:00
"module_files": ["Crafter.Graphics-Window","Crafter.Graphics-WindowWayland","Crafter.Graphics-WindowWaylandWayland", "Crafter.Graphics", "Crafter.Graphics-UiElement", "Crafter.Graphics-Types", "Crafter.Graphics-VulkanDevice", "Crafter.Graphics-VulkanPipeline", "Crafter.Graphics-VulkanShader", "Crafter.Graphics-WindowWaylandVulkan", "Crafter.Graphics-Camera", "Crafter.Graphics-VulkanBuffer", "Crafter.Graphics-Mesh", "Crafter.Graphics-MeshShader"],
2025-05-03 02:34:38 +02:00
"build_dir": "build",
"output_dir": "bin",
2025-04-16 00:43:33 +02:00
"type":"library",
2025-04-19 15:46:26 +02:00
"libs": ["wayland-client", "vulkan"],
"flags": ["-Wno-uninitialized"],
"shaders": [
{
2025-05-03 02:34:38 +02:00
"path":"MeshShaderXYZ.mesh",
2025-04-19 15:46:26 +02:00
"type":13,
"entrypoint":"main"
},
{
2025-05-03 02:34:38 +02:00
"path":"FragmentShaderSolidWhite.frag",
2025-04-19 15:46:26 +02:00
"type":4,
"entrypoint":"main"
}
]
2025-04-16 00:43:33 +02:00
},
{
"name": "debug",
"extends": ["base"],
"optimization_level": "0",
"debug": true
},
{
"name": "test",
"extends": ["debug"],
"source_files": ["main"],
"type":"executable",
"dependencies": [
{
"path":"../Crafter.Event/project.json",
"configuration":"debug"
},
2025-04-27 22:16:56 +02:00
{
"path":"../Crafter.Asset/project.json",
"configuration":"lib-debug"
},
2025-04-16 00:43:33 +02:00
{
"path":"/home/jorijn/repos/Crafter/Crafter.Component/project.json",
"configuration":"debug"
}
]
},
{
"name": "release",
"extends": ["base"],
"optimization_level": "3"
}
]
}