{ "version": "2.0.0", "tasks": [ { "type": "shell", "label": "C/C++: g++ build active file", "command": "/usr/bin/g++", "args": [ "-std=c++17", -"-fext-numeric-literals", "-g", "${file}", "-o", "${fileDirname}/${fileBasenameNoExtension}" ], "options": { "cwd": "${workspaceFolder}" }, "problemMatcher": [ "$gcc" ], "group": { "kind": "build", "isDefault": true } }, { "label": "clean", "type": "shell", "linux": { "command": "rm", "args": [ "-rfv", "bin/*", "obj/*", "${fileDirname}/${fileBasenameNoExtension}" ] }, "windows": { "command": "del", "args": [ "/S /Q", "bin/*", "obj/*", "${fileDirname}/${fileBasenameNoExtension}" ] }, "options": { "cwd": "${workspaceFolder}/" }, "problemMatcher": [] } ] }