initial commit
This commit is contained in:
commit
de042a580c
22 changed files with 221 additions and 0 deletions
38
project.json
Normal file
38
project.json
Normal 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"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue