{ "tasks": [ { "type": "cppbuild", "label": "Build Debug", "command": "c++", "args": [ "-fdiagnostics-color=always", "-g", "${workspaceFolder}\\src\\main.cpp", "-o", "${workspaceFolder}\\build\\build.exe", "-DDEBUG" ], "options": { "cwd": "${workspaceFolder}\\build\\" }, "problemMatcher": [ "$gcc" ], "group": { "kind": "build", "isDefault": false }, }, { "type": "cppbuild", "label": "Build \"Release\"", "command": "c++", "args": [ "-fdiagnostics-color=always", "-g", "${workspaceFolder}\\src\\main.cpp", "-o", "${workspaceFolder}\\build\\build.exe" ], "options": { "cwd": "${workspaceFolder}\\build\\" }, "problemMatcher": [ "$gcc" ], "group": { "kind": "build", "isDefault": true }, } ], "version": "2.0.0" }