{ "version": "2.0.0", "tasks": [ { "type": "shell", "label": "C/C++: cpp build workspace", "command": "/usr/bin/g++", "args": [ "-g", "`pkg-config", "--cflags", "gtkmm-3.0`", "${cwd}/*.cpp", "`pkg-config", "--libs", "gtkmm-3.0`", "-o", "${cwd}/${workspaceFolderBasename}" ], "options": { "cwd": "${workspaceFolder}" }, "problemMatcher": [ "$gcc" ], "group": { "kind": "build", "isDefault": true } } ] }