You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
744 B
29 lines
744 B
1 year ago
|
{
|
||
|
"tasks": [
|
||
|
{
|
||
|
"type": "cppbuild",
|
||
|
"label": "C/C++: g++ build active file",
|
||
|
"command": "/usr/bin/g++",
|
||
|
"args": [
|
||
|
"-fdiagnostics-color=always",
|
||
|
"-g",
|
||
|
"${fileDirname}/test.cpp",
|
||
|
"${fileDirname}/../src/*.cpp",
|
||
|
"-o",
|
||
|
"${fileDirname}/test.o"
|
||
|
],
|
||
|
"options": {
|
||
|
"cwd": "${fileDirname}"
|
||
|
},
|
||
|
"problemMatcher": [
|
||
|
"$gcc"
|
||
|
],
|
||
|
"group": {
|
||
|
"kind": "build",
|
||
|
"isDefault": true
|
||
|
},
|
||
|
"detail": "Task generated by Debugger."
|
||
|
}
|
||
|
],
|
||
|
"version": "2.0.0"
|
||
|
}
|