Added OSX build tasks
Users will have to specify their personal installation of raylib.
This commit is contained in:
parent
adf08c88ea
commit
921e4eaa87
1 changed files with 25 additions and 6 deletions
31
projects/VSCode/.vscode/tasks.json
vendored
31
projects/VSCode/.vscode/tasks.json
vendored
|
@ -4,30 +4,49 @@
|
||||||
"version": "2.0.0",
|
"version": "2.0.0",
|
||||||
"tasks": [
|
"tasks": [
|
||||||
{
|
{
|
||||||
"label": "build release",
|
"label": "(WIN) build release",
|
||||||
"type": "process",
|
"type": "process",
|
||||||
"command": "C:/raylib/mingw/bin/mingw32-make.exe",
|
"command": "C:/raylib/mingw/bin/mingw32-make.exe",
|
||||||
"args": [
|
"args": [
|
||||||
"PLATFORM=PLATFORM_DESKTOP",
|
"PLATFORM=PLATFORM_DESKTOP",
|
||||||
"RAYLIB_PATH=C:/raylib/raylib",
|
"RAYLIB_PATH=C:/raylib/raylib",
|
||||||
"PROJECT_NAME=game",
|
|
||||||
],
|
],
|
||||||
"group": "build"
|
"group": "build"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"label": "build debug",
|
"label": "(WIN) build debug",
|
||||||
"type": "process",
|
"type": "process",
|
||||||
"command": "C:/raylib/mingw/bin/mingw32-make.exe",
|
"command": "C:/raylib/mingw/bin/mingw32-make.exe",
|
||||||
"args": [
|
"args": [
|
||||||
"PLATFORM=PLATFORM_DESKTOP",
|
"PLATFORM=PLATFORM_DESKTOP",
|
||||||
"RAYLIB_PATH=C:/raylib/raylib",
|
"RAYLIB_PATH=C:/raylib/raylib",
|
||||||
"PROJECT_NAME=game",
|
"DEBUGGING=TRUE"
|
||||||
"DEBUGGING=TRUE",
|
],
|
||||||
|
"group": "build"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"label": "(OSX) build debug",
|
||||||
|
"type": "process",
|
||||||
|
"command": "make",
|
||||||
|
"args": [
|
||||||
|
"PLATFORM=PLATFORM_DESKTOP",
|
||||||
|
"RAYLIB_PATH=<path_to_raylib>",
|
||||||
|
"DEBUGGING=TRUE"
|
||||||
],
|
],
|
||||||
"group": {
|
"group": {
|
||||||
"kind": "build",
|
"kind": "build",
|
||||||
"isDefault": true
|
"isDefault": true
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"label": "(OSX) build release",
|
||||||
|
"type": "process",
|
||||||
|
"command": "make",
|
||||||
|
"args": [
|
||||||
|
"PLATFORM=PLATFORM_DESKTOP",
|
||||||
|
"RAYLIB_PATH=<path_to_raylib>",
|
||||||
|
],
|
||||||
|
"group": "build"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue