27 lines
No EOL
662 B
JSON
27 lines
No EOL
662 B
JSON
{
|
|
"tasks": [
|
|
{
|
|
"type": "cppbuild",
|
|
"label": "Build c++ project",
|
|
"command": "c++",
|
|
"args": [
|
|
"-fdiagnostics-color=always",
|
|
"-g",
|
|
"${workspaceFolder}\\src\\main.cpp",
|
|
"-o",
|
|
"${workspaceFolder}\\build\\build.exe"
|
|
],
|
|
"options": {
|
|
"cwd": "${fileDirname}"
|
|
},
|
|
"problemMatcher": [
|
|
"$gcc"
|
|
],
|
|
"group": {
|
|
"kind": "build",
|
|
"isDefault": true
|
|
},
|
|
}
|
|
],
|
|
"version": "2.0.0"
|
|
} |