From d17c323f98a1341e8e3acee0de1b7c5b8a129d13 Mon Sep 17 00:00:00 2001 From: Murray Campbell Date: Fri, 21 Sep 2018 18:18:38 -0500 Subject: Update tasks.json --- projects/VSCode/.vscode/tasks.json | 23 +++++++++++++++++++++-- 1 file changed, 21 insertions(+), 2 deletions(-) (limited to 'projects/VSCode') 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=", "DEBUGGING=TRUE" ], + "group": "build" + }, + { + "label": "(OSX) build release", + "type": "process", + "command": "make", + "args": [ + "PLATFORM=PLATFORM_DESKTOP", + "RAYLIB_PATH=", + ], + "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=", ], "group": "build" } -- cgit v1.2.3