1
0
mirror of https://gitlab.com/lander-team/lander-cpp.git synced 2025-06-18 08:06:42 +00:00

50 lines
836 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"type": "cppbuild",
"label": "Debug",
"command": "g++",
"args": [
"-g",
"${workspaceFolder}\\src\\main.cpp",
"-o",
"${workspaceFolder}\\build\\debug\\main.exe",
"-I",
"${workspaceFolder}\\include",
],
"options": {
"cwd": "${fileDirname}"
},
"problemMatcher": [
"$gcc"
],
"group": {
"kind": "build",
"isDefault": true
},
},
{
"type": "cppbuild",
"label": "Release",
"command": "g++",
"args": [
"${workspaceFolder}\\src\\main.cpp",
"-o",
"${workspaceFolder}\\build\\release\\main.exe",
"-I",
"${workspaceFolder}\\include",
],
"options": {
"cwd": "${fileDirname}"
},
"problemMatcher": [
"$gcc"
],
"group": {
"kind": "build",
"isDefault": true
},
}
]
}