2018-07-31 11:26:52 +02:00
|
|
|
{
|
|
|
|
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
|
|
|
// for the documentation about the tasks.json format
|
|
|
|
"version": "2.0.0",
|
|
|
|
"tasks": [
|
|
|
|
{
|
2018-10-24 14:35:51 -05:00
|
|
|
"label": "build debug",
|
2018-09-21 18:18:38 -05:00
|
|
|
"type": "process",
|
|
|
|
"command": "make",
|
|
|
|
"args": [
|
|
|
|
"PLATFORM=PLATFORM_DESKTOP",
|
|
|
|
"DEBUGGING=TRUE"
|
|
|
|
],
|
2018-10-24 14:35:51 -05:00
|
|
|
"windows": {
|
2019-06-05 00:04:31 +02:00
|
|
|
"command": "C:/raylib/mingw/bin/mingw32-make.exe",
|
2018-10-24 14:35:51 -05:00
|
|
|
"args": [
|
2019-07-02 18:36:09 +02:00
|
|
|
"RAYLIB_PATH=C:/raylib/raylib",
|
|
|
|
"PROJECT_NAME=${fileBasenameNoExtension}",
|
2018-10-24 14:35:51 -05:00
|
|
|
],
|
|
|
|
},
|
|
|
|
"osx": {
|
|
|
|
"args": [
|
2019-01-10 11:24:34 +01:00
|
|
|
"RAYLIB_PATH=<path_to_raylib>/raylib"
|
2018-10-24 14:35:51 -05:00
|
|
|
],
|
|
|
|
},
|
2018-07-31 11:26:52 +02:00
|
|
|
"group": {
|
|
|
|
"kind": "build",
|
|
|
|
"isDefault": true
|
2019-07-30 14:00:10 +02:00
|
|
|
},
|
|
|
|
"problemMatcher": [
|
|
|
|
"$gcc"
|
|
|
|
]
|
2018-08-30 09:42:33 -05:00
|
|
|
},
|
|
|
|
{
|
2018-10-24 14:35:51 -05:00
|
|
|
"label": "build release",
|
2018-08-30 09:42:33 -05:00
|
|
|
"type": "process",
|
|
|
|
"command": "make",
|
|
|
|
"args": [
|
|
|
|
"PLATFORM=PLATFORM_DESKTOP",
|
|
|
|
],
|
2018-10-24 14:35:51 -05:00
|
|
|
"windows": {
|
2019-06-05 00:04:31 +02:00
|
|
|
"command": "C:/raylib/mingw/bin/mingw32-make.exe",
|
2018-10-24 14:35:51 -05:00
|
|
|
"args": [
|
|
|
|
"RAYLIB_PATH=C:/raylib/raylib",
|
2019-07-02 18:36:09 +02:00
|
|
|
"PROJECT_NAME=${fileBasenameNoExtension}",
|
2018-10-24 14:35:51 -05:00
|
|
|
],
|
|
|
|
},
|
|
|
|
"osx": {
|
|
|
|
"args": [
|
2019-01-10 11:24:34 +01:00
|
|
|
"RAYLIB_PATH=<path_to_raylib>/raylib",
|
2018-10-24 14:35:51 -05:00
|
|
|
],
|
|
|
|
},
|
2019-07-30 14:00:10 +02:00
|
|
|
"group": "build",
|
|
|
|
"problemMatcher": [
|
|
|
|
"$gcc"
|
|
|
|
]
|
2018-07-31 11:26:52 +02:00
|
|
|
}
|
|
|
|
]
|
2018-08-30 09:42:33 -05:00
|
|
|
}
|