diff options
| author | Murray Campbell <MurrayIRC@gmail.com> | 2018-08-30 09:50:09 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-08-30 09:50:09 -0500 |
| commit | f97bb085bf71bbaa7aed223e9243029979ba4948 (patch) | |
| tree | 24dd685a1f4f1020b076028cf1f0b411527838ac /projects/VSCode | |
| parent | ea84cce27dba8ec0c0e2cf80824a2bb4a754d76b (diff) | |
| parent | 921e4eaa87a1e0878be3f43bf94c86db8f1dba07 (diff) | |
| download | raylib-f97bb085bf71bbaa7aed223e9243029979ba4948.tar.gz raylib-f97bb085bf71bbaa7aed223e9243029979ba4948.zip | |
Merge pull request #4 from MurrayIRC/patch-4
Added OSX build tasks
Diffstat (limited to 'projects/VSCode')
| -rw-r--r-- | projects/VSCode/.vscode/tasks.json | 31 |
1 files changed, 25 insertions, 6 deletions
diff --git a/projects/VSCode/.vscode/tasks.json b/projects/VSCode/.vscode/tasks.json index cef9e960..83e45c39 100644 --- a/projects/VSCode/.vscode/tasks.json +++ b/projects/VSCode/.vscode/tasks.json @@ -4,30 +4,49 @@ "version": "2.0.0", "tasks": [ { - "label": "build release", + "label": "(WIN) build release", "type": "process", "command": "C:/raylib/mingw/bin/mingw32-make.exe", "args": [ "PLATFORM=PLATFORM_DESKTOP", "RAYLIB_PATH=C:/raylib/raylib", - "PROJECT_NAME=game", ], "group": "build" }, { - "label": "build debug", + "label": "(WIN) build debug", "type": "process", "command": "C:/raylib/mingw/bin/mingw32-make.exe", "args": [ "PLATFORM=PLATFORM_DESKTOP", "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": { "kind": "build", "isDefault": true } + }, + { + "label": "(OSX) build release", + "type": "process", + "command": "make", + "args": [ + "PLATFORM=PLATFORM_DESKTOP", + "RAYLIB_PATH=<path_to_raylib>", + ], + "group": "build" } ] -}
\ No newline at end of file +} |
