Crafter.Event/project.json

37 lines
1 KiB
JSON

{
"name": "crafter-event",
"configurations": [
{
"name": "base",
"standard": "c++26",
"source_files": [],
"module_files": ["Crafter.Event"],
"additional_files": [],
"build_dir": "build",
"output_dir": "bin",
"type":"library"
},
{
"name": "lib-debug",
"extends": ["base"],
"debug":true,
"dependencies": [
{
"path":"https://forgejo.catcrafts.net/Catcrafts/Crafter.Thread.git",
"configuration":"lib-debug"
}
]
},
{
"name": "lib-release",
"extends": ["base"],
"optimization_level": "3",
"dependencies": [
{
"path":"https://forgejo.catcrafts.net/Catcrafts/Crafter.Thread.git",
"configuration":"lib-release"
}
]
}
]
}