initial commit

This commit is contained in:
Jorijn van der Graaf 2025-05-06 12:38:11 +02:00
commit de042a580c
22 changed files with 221 additions and 0 deletions

38
project.json Normal file
View file

@ -0,0 +1,38 @@
{
"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": [],
"build_dir": "./build",
"output_dir": "./bin",
"type":"library"
},
{
"name": "debug",
"extends": ["base"],
"optimization_level": "0",
"debug":true,
"dependencies": [
{
"path":"/home/jorijn/repos/Crafter/Crafter.Event/project.json",
"configuration":"debug"
}
]
},
{
"name": "release",
"extends": ["base"],
"optimization_level": "3",
"dependencies": [
{
"path":"/home/jorijn/repos/Crafter/Crafter.Event/project.json",
"configuration":"debug"
}
]
}
]
}