mirror of
https://gitlab.com/lander-team/lander-cpp.git
synced 2025-06-16 15:17:23 +00:00
29 lines
436 B
JSON
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
|
|
},
|
|
}
|
|
]
|
|
} |