| { | |
|     // See https://go.microsoft.com/fwlink/?LinkId=733558 | |
|     // for the documentation about the tasks.json format | |
|     "version": "2.0.0", | |
|     "tasks": [ | |
|         { | |
|             "label": "build debug", | |
|             "type": "process", | |
|             "command": "make", | |
|             "args": [ | |
|                 "PLATFORM=PLATFORM_DESKTOP", | |
|                 "DEBUGGING=TRUE" | |
|             ], | |
|             "windows": { | |
|                 "command": "C:/raylib/mingw32/bin/mingw32-make.exe", | |
|                 "args": [ | |
|                     "RAYLIB_PATH=C:/raylib/raylib" | |
|                 ], | |
|             }, | |
|             "osx": { | |
|                 "args": [ | |
|                     "RAYLIB_PATH=<path_to_raylib>/raylib" | |
|                 ], | |
|             }, | |
|             "group": { | |
|                 "kind": "build", | |
|                 "isDefault": true | |
|             } | |
|         }, | |
|         { | |
|             "label": "build release", | |
|             "type": "process", | |
|             "command": "make", | |
|             "args": [ | |
|                 "PLATFORM=PLATFORM_DESKTOP", | |
|             ], | |
|             "windows": { | |
|                 "command": "C:/raylib/mingw32/bin/mingw32-make.exe", | |
|                 "args": [ | |
|                     "RAYLIB_PATH=C:/raylib/raylib", | |
|                 ], | |
|             }, | |
|             "osx": { | |
|                 "args": [ | |
|                     "RAYLIB_PATH=<path_to_raylib>/raylib", | |
|                 ], | |
|             }, | |
|             "group": "build" | |
|         } | |
|     ] | |
| }
 |