{ // See https://go.microsoft.com/fwlink/?LinkId=733558 // for the documentation about the tasks.json format "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=", "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": "(GNU) build release", "type": "process", "command": "make", "args": [ "PLATFORM=PLATFORM_DESKTOP", ], "group": "build" } ] }