diff --git a/projects/VSCode/.vscode/tasks.json b/projects/VSCode/.vscode/tasks.json index 83e45c392..d94a2d692 100644 --- a/projects/VSCode/.vscode/tasks.json +++ b/projects/VSCode/.vscode/tasks.json @@ -33,10 +33,7 @@ "RAYLIB_PATH=", "DEBUGGING=TRUE" ], - "group": { - "kind": "build", - "isDefault": true - } + "group": "build" }, { "label": "(OSX) build release", @@ -47,6 +44,28 @@ "RAYLIB_PATH=", ], "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" } ] }