1
0
mirror of https://gitlab.com/lander-team/lander-cpp.git synced 2025-06-16 15:17:23 +00:00
2021-11-02 18:24:51 -07:00

29 lines
436 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"type": "process",
"label": "buildSim",
"command": "g++",
"args": [
"-g",
"${workspaceFolder}/src/main.cpp",
"-o",
"${workspaceFolder}/main.exe",
"-I",
"${workspaceFolder}/include",
"-Wall"
],
"options": {
"cwd": "${fileDirname}"
},
"problemMatcher": [
"$gcc"
],
"group": {
"kind": "build",
"isDefault": true
},
}
]
}