Crafter.Event/project.json

37 lines
1 KiB
JSON
Raw Normal View History

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