Crafter.Component/project.json

37 lines
1.1 KiB
JSON
Raw Normal View History

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