Update tasks.json

This commit is contained in:
Murray Campbell 2018-09-21 18:18:38 -05:00 committed by GitHub
parent 65c74c7cfa
commit d17c323f98
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -33,10 +33,7 @@
"RAYLIB_PATH=<path_to_raylib>",
"DEBUGGING=TRUE"
],
"group": {
"kind": "build",
"isDefault": true
}
"group": "build"
},
{
"label": "(OSX) build release",
@ -47,6 +44,28 @@
"RAYLIB_PATH=<path_to_raylib>",
],
"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"
}
]
}