summaryrefslogtreecommitdiffhomepage
path: root/projects
diff options
context:
space:
mode:
authorMurray Campbell <[email protected]>2018-09-21 18:18:38 -0500
committerGitHub <[email protected]>2018-09-21 18:18:38 -0500
commitd17c323f98a1341e8e3acee0de1b7c5b8a129d13 (patch)
tree2ba114105ab77f7c4e2427700700db208af60782 /projects
parent65c74c7cfaf7b52b0d31d705a9e3ad0344c5c4b7 (diff)
downloadraylib-d17c323f98a1341e8e3acee0de1b7c5b8a129d13.tar.gz
raylib-d17c323f98a1341e8e3acee0de1b7c5b8a129d13.zip
Update tasks.json
Diffstat (limited to 'projects')
-rw-r--r--projects/VSCode/.vscode/tasks.json23
1 files changed, 21 insertions, 2 deletions
diff --git a/projects/VSCode/.vscode/tasks.json b/projects/VSCode/.vscode/tasks.json
index 83e45c39..d94a2d69 100644
--- a/projects/VSCode/.vscode/tasks.json
+++ b/projects/VSCode/.vscode/tasks.json
@@ -33,18 +33,37 @@
"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",
+ "command": "make",
+ "args": [
+ "PLATFORM=PLATFORM_DESKTOP",
+ "DEBUGGING=TRUE"
+ ],
"group": {
"kind": "build",
"isDefault": true
}
},
{
- "label": "(OSX) build release",
+ "label": "(GNU) build release",
"type": "process",
"command": "make",
"args": [
"PLATFORM=PLATFORM_DESKTOP",
- "RAYLIB_PATH=<path_to_raylib>",
],
"group": "build"
}