Update tasks.json
This commit is contained in:
parent
5b0ab656f1
commit
411b2827a8
68
projects/VSCode/.vscode/tasks.json
vendored
68
projects/VSCode/.vscode/tasks.json
vendored
@ -4,67 +4,47 @@
|
|||||||
"version": "2.0.0",
|
"version": "2.0.0",
|
||||||
"tasks": [
|
"tasks": [
|
||||||
{
|
{
|
||||||
"label": "(WIN) build release",
|
"label": "build debug",
|
||||||
"type": "process",
|
|
||||||
"command": "C:/raylib/mingw/bin/mingw32-make.exe",
|
|
||||||
"args": [
|
|
||||||
"PLATFORM=PLATFORM_DESKTOP",
|
|
||||||
"RAYLIB_PATH=C:/raylib/raylib",
|
|
||||||
],
|
|
||||||
"group": "build"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"label": "(WIN) build debug",
|
|
||||||
"type": "process",
|
|
||||||
"command": "C:/raylib/mingw/bin/mingw32-make.exe",
|
|
||||||
"args": [
|
|
||||||
"PLATFORM=PLATFORM_DESKTOP",
|
|
||||||
"RAYLIB_PATH=C:/raylib/raylib",
|
|
||||||
"DEBUGGING=TRUE"
|
|
||||||
],
|
|
||||||
"group": "build"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"label": "(OSX) build debug",
|
|
||||||
"type": "process",
|
|
||||||
"command": "make",
|
|
||||||
"args": [
|
|
||||||
"PLATFORM=PLATFORM_DESKTOP",
|
|
||||||
"RAYLIB_PATH=<path_to_raylib>",
|
|
||||||
"DEBUGGING=TRUE"
|
|
||||||
],
|
|
||||||
"group": "build"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"label": "(OSX) build release",
|
|
||||||
"type": "process",
|
|
||||||
"command": "make",
|
|
||||||
"args": [
|
|
||||||
"PLATFORM=PLATFORM_DESKTOP",
|
|
||||||
"RAYLIB_PATH=<path_to_raylib>",
|
|
||||||
],
|
|
||||||
"group": "build"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"label": "(GNU) build debug",
|
|
||||||
"type": "process",
|
"type": "process",
|
||||||
"command": "make",
|
"command": "make",
|
||||||
"args": [
|
"args": [
|
||||||
"PLATFORM=PLATFORM_DESKTOP",
|
"PLATFORM=PLATFORM_DESKTOP",
|
||||||
"DEBUGGING=TRUE"
|
"DEBUGGING=TRUE"
|
||||||
],
|
],
|
||||||
|
"windows": {
|
||||||
|
"command": "C:/raylib/mingw/bin/mingw32-make.exe",
|
||||||
|
"args": [
|
||||||
|
"RAYLIB_PATH=C:/raylib/raylib"
|
||||||
|
],
|
||||||
|
},
|
||||||
|
"osx": {
|
||||||
|
"args": [
|
||||||
|
"RAYLIB_PATH=/Users/murray/work/ray/raylib"
|
||||||
|
],
|
||||||
|
},
|
||||||
"group": {
|
"group": {
|
||||||
"kind": "build",
|
"kind": "build",
|
||||||
"isDefault": true
|
"isDefault": true
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"label": "(GNU) build release",
|
"label": "build release",
|
||||||
"type": "process",
|
"type": "process",
|
||||||
"command": "make",
|
"command": "make",
|
||||||
"args": [
|
"args": [
|
||||||
"PLATFORM=PLATFORM_DESKTOP",
|
"PLATFORM=PLATFORM_DESKTOP",
|
||||||
],
|
],
|
||||||
|
"windows": {
|
||||||
|
"command": "C:/raylib/mingw/bin/mingw32-make.exe",
|
||||||
|
"args": [
|
||||||
|
"RAYLIB_PATH=C:/raylib/raylib",
|
||||||
|
],
|
||||||
|
},
|
||||||
|
"osx": {
|
||||||
|
"args": [
|
||||||
|
"RAYLIB_PATH=/Users/murray/work/ray/raylib",
|
||||||
|
],
|
||||||
|
},
|
||||||
"group": "build"
|
"group": "build"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
Loading…
Reference in New Issue
Block a user