working parsing of json and stub for parsing commands
This commit is contained in:
commit
51ec473ee6
7 changed files with 229 additions and 0 deletions
40
odin_runner.json
Normal file
40
odin_runner.json
Normal file
|
|
@ -0,0 +1,40 @@
|
|||
{
|
||||
"defaults": {
|
||||
"collections": [],
|
||||
"flags": [],
|
||||
"output_dir": "./bin/",
|
||||
"binary_name": "binary_name.bin"
|
||||
},
|
||||
"configurations": [
|
||||
{
|
||||
"release": {
|
||||
"collections": [
|
||||
{
|
||||
"name": "shared",
|
||||
"path": "./src/"
|
||||
}
|
||||
],
|
||||
"flags": [
|
||||
"-o:speed",
|
||||
],
|
||||
"output_dir": "./bin/release/",
|
||||
"binary_name": "binary_name_release.bin"
|
||||
}
|
||||
},
|
||||
{
|
||||
"debug": {
|
||||
"collections": [
|
||||
{
|
||||
"name": "shared",
|
||||
"path": "./src/"
|
||||
}
|
||||
],
|
||||
"flags": [
|
||||
"-debug",
|
||||
],
|
||||
"output_dir": "./bin/debug/",
|
||||
"binary_name": "binary_name_debug.bin"
|
||||
}
|
||||
}
|
||||
],
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue