initial commit
This commit is contained in:
commit
41b72e6fdf
46 changed files with 9134 additions and 0 deletions
44
project.json
Normal file
44
project.json
Normal file
|
|
@ -0,0 +1,44 @@
|
|||
{
|
||||
"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"
|
||||
}
|
||||
]
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue