Crafter.Graphics/project.json
2025-04-16 00:43:33 +02:00

44 lines
1.4 KiB
JSON

{
"name": "crafter-graphics",
"configurations": [
{
"name": "base",
"standard": "c++26",
"source_files": ["Crafter.Graphics-Window", "Crafter.Graphics-UiElement"],
"c_files": ["wayland-xdg-decoration-unstable-v1-client-protocol", "xdg-shell-protocol", "shm"],
"module_files": ["Crafter.Graphics-Window", "Crafter.Graphics", "Crafter.Graphics-UiElement", "Crafter.Graphics-Types"],
"build_dir": "./build",
"output_dir": "./bin",
"type":"library",
"libs": ["wayland-client"],
"flags": ["-Wno-uninitialized"]
},
{
"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"
},
{
"path":"/home/jorijn/repos/Crafter/Crafter.Component/project.json",
"configuration":"debug"
}
]
},
{
"name": "release",
"extends": ["base"],
"optimization_level": "3"
}
]
}