diff options
| author | Murray Campbell <[email protected]> | 2018-10-24 14:35:51 -0500 |
|---|---|---|
| committer | GitHub <[email protected]> | 2018-10-24 14:35:51 -0500 |
| commit | 411b2827a8cd0a679b2be1422d0de0c1ec02c566 (patch) | |
| tree | 24b6622f102406e87c236def3d4e2cd8971c9654 /projects/VSCode | |
| parent | 5b0ab656f1d872d50267b9da6ac5f864504efb0e (diff) | |
| download | raylib-411b2827a8cd0a679b2be1422d0de0c1ec02c566.tar.gz raylib-411b2827a8cd0a679b2be1422d0de0c1ec02c566.zip | |
Update tasks.json
Diffstat (limited to 'projects/VSCode')
| -rw-r--r-- | projects/VSCode/.vscode/tasks.json | 68 |
1 files changed, 24 insertions, 44 deletions
diff --git a/projects/VSCode/.vscode/tasks.json b/projects/VSCode/.vscode/tasks.json index d94a2d69..6106c05f 100644 --- a/projects/VSCode/.vscode/tasks.json +++ b/projects/VSCode/.vscode/tasks.json @@ -4,67 +4,47 @@ "version": "2.0.0", "tasks": [ { - "label": "(WIN) build release", - "type": "process", - "command": "C:/raylib/mingw/bin/mingw32-make.exe", - "args": [ - "PLATFORM=PLATFORM_DESKTOP", - "RAYLIB_PATH=C:/raylib/raylib", - ], - "group": "build" - }, - { - "label": "(WIN) build debug", - "type": "process", - "command": "C:/raylib/mingw/bin/mingw32-make.exe", - "args": [ - "PLATFORM=PLATFORM_DESKTOP", - "RAYLIB_PATH=C:/raylib/raylib", - "DEBUGGING=TRUE" - ], - "group": "build" - }, - { - "label": "(OSX) build debug", - "type": "process", - "command": "make", - "args": [ - "PLATFORM=PLATFORM_DESKTOP", - "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", + "label": "build debug", "type": "process", "command": "make", "args": [ "PLATFORM=PLATFORM_DESKTOP", "DEBUGGING=TRUE" ], + "windows": { + "command": "C:/raylib/mingw/bin/mingw32-make.exe", + "args": [ + "RAYLIB_PATH=C:/raylib/raylib" + ], + }, + "osx": { + "args": [ + "RAYLIB_PATH=/Users/murray/work/ray/raylib" + ], + }, "group": { "kind": "build", "isDefault": true } }, { - "label": "(GNU) build release", + "label": "build release", "type": "process", "command": "make", "args": [ "PLATFORM=PLATFORM_DESKTOP", ], + "windows": { + "command": "C:/raylib/mingw/bin/mingw32-make.exe", + "args": [ + "RAYLIB_PATH=C:/raylib/raylib", + ], + }, + "osx": { + "args": [ + "RAYLIB_PATH=/Users/murray/work/ray/raylib", + ], + }, "group": "build" } ] |
