{
"tasks": [
{
"type": "cppbuild",
"label": "C/C++: g++.exe build active file",
"command": "C:\\msys64\\mingw64\\bin\\g++.exe",
"args": [
"-fdiagnostics-color=always",
"-g",
/** Input files **/
"${workspaceFolder}\\*.cpp",
"${workspaceFolder}\\bp_tree\\*.cpp",
"${workspaceFolder}\\bp_tree\\*.h",
"${workspaceFolder}\\storage\\*.cpp",
"${workspaceFolder}\\storage\\*.h",
"-o",
/** Output file **/
"${workspaceFolder}\\output.exe" // default is "${fileDirname}\\${fileBasenameNoExtension}.exe"
],
"options": {
"cwd": "${fileDirname}"
},
"problemMatcher": ["$gcc"],
"group": {
"kind": "build",
"isDefault": true
},
"detail": "Task generated by Debugger."
}
],
"version": "2.0.0"
}