inital commit
This commit is contained in:
commit
bf96eb69ae
23 changed files with 10205 additions and 0 deletions
39
project.json
Normal file
39
project.json
Normal file
|
|
@ -0,0 +1,39 @@
|
|||
{
|
||||
"name": "crafter-asset",
|
||||
"configurations": [
|
||||
{
|
||||
"name": "base",
|
||||
"standard": "c++26",
|
||||
"source_files": ["Crafter.Asset-Asset"],
|
||||
"module_files": ["Crafter.Asset-Asset", "Crafter.Asset"],
|
||||
"build_dir": "./build",
|
||||
"output_dir": "./bin"
|
||||
},
|
||||
{
|
||||
"name": "executable",
|
||||
"extends": ["base"],
|
||||
"type":"executable",
|
||||
"source_files": ["main"]
|
||||
},
|
||||
{
|
||||
"name": "executable-windows",
|
||||
"extends": ["executable"],
|
||||
"target": "x86_64-w64-mingw64"
|
||||
},
|
||||
{
|
||||
"name": "executable-linux-debug",
|
||||
"extends": ["executable"],
|
||||
"debug": true
|
||||
},
|
||||
{
|
||||
"name": "lib",
|
||||
"extends": ["base"],
|
||||
"type":"library"
|
||||
},
|
||||
{
|
||||
"name": "lib-debug",
|
||||
"extends": ["lib"],
|
||||
"debug": true
|
||||
}
|
||||
]
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue