Files
Snake-Raylib/.vscode/tasks.json
T
2023-05-06 18:33:58 +02:00

58 lines
1.7 KiB
JSON

{
// 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": [
],
"windows": {
"command": "mingw32-make.exe",
"args": [
"RAYLIB_PATH=C:/raylib/raylib",
// "OBJS=${fileBasenameNoExtension}.cpp",
"BUILD_MODE=DEBUG"
],
},
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": [
"$g++"
]
},
{
"label": "build release",
"type": "process",
"command": "make",
"args": [
"PLATFORM=PLATFORM_DESKTOP",
// "PROJECT_NAME=${fileBasenameNoExtension}",
"OBJS=${fileBasenameNoExtension}.cpp"
],
"windows": {
"command": "mingw32-make.exe",
"args": [
"RAYLIB_PATH=C:/raylib/raylib",
"PROJECT_NAME=${fileBasenameNoExtension}",
"OBJS=${fileBasenameNoExtension}.cpp"
],
},
"osx": {
"args": [
"RAYLIB_PATH=<path_to_raylib>/raylib",
"PROJECT_NAME=${fileBasenameNoExtension}",
"OBJS=${fileBasenameNoExtension}.c++"
],
},
"group": "build",
"problemMatcher": [
"$g++"
]
}
]
}