Update tasks.json
This commit is contained in:
parent
65c74c7cfa
commit
d17c323f98
1 changed files with 23 additions and 4 deletions
27
projects/VSCode/.vscode/tasks.json
vendored
27
projects/VSCode/.vscode/tasks.json
vendored
|
@ -33,10 +33,7 @@
|
|||
"RAYLIB_PATH=<path_to_raylib>",
|
||||
"DEBUGGING=TRUE"
|
||||
],
|
||||
"group": {
|
||||
"kind": "build",
|
||||
"isDefault": true
|
||||
}
|
||||
"group": "build"
|
||||
},
|
||||
{
|
||||
"label": "(OSX) build release",
|
||||
|
@ -47,6 +44,28 @@
|
|||
"RAYLIB_PATH=<path_to_raylib>",
|
||||
],
|
||||
"group": "build"
|
||||
},
|
||||
{
|
||||
"label": "(GNU) build debug",
|
||||
"type": "process",
|
||||
"command": "make",
|
||||
"args": [
|
||||
"PLATFORM=PLATFORM_DESKTOP",
|
||||
"DEBUGGING=TRUE"
|
||||
],
|
||||
"group": {
|
||||
"kind": "build",
|
||||
"isDefault": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"label": "(GNU) build release",
|
||||
"type": "process",
|
||||
"command": "make",
|
||||
"args": [
|
||||
"PLATFORM=PLATFORM_DESKTOP",
|
||||
],
|
||||
"group": "build"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue