{ "version": "2.0.0", "tasks": [ { "type": "cppbuild", "label": "Build project", "command": "cmake", "args": ["--build", "\"build\"", "-j", "8"], "options": { "cwd": "${workspaceFolder}" }, "problemMatcher": ["$gcc"], "group": { "kind": "build", "isDefault": true } }, { "type": "shell", "label": "Re-build project", "command": "cmake", "args": ["--build", "\"build\"", "--clean-first", "-v", "-j", "8"], "options": { "cwd": "${workspaceFolder}" }, "problemMatcher": ["$gcc"], }, { "type": "shell", "label": "Clean project", "command": "cmake", "args": ["--build", "\"build\"", "--target", "clean"], "options": { "cwd": "${workspaceFolder}" }, "problemMatcher": [] }, { "type": "shell", "label": "Run application", "command": "${workspaceFolder}\\build\\LwLibPROJECT.exe", "args": [], "problemMatcher": [], }, ] }