2021-12-13 09:40:04 +01:00
|
|
|
{
|
|
|
|
"version": "2.0.0",
|
|
|
|
"tasks": [
|
|
|
|
{
|
|
|
|
"type": "cppbuild",
|
|
|
|
"label": "Build project",
|
|
|
|
"command": "cmake",
|
2022-01-15 00:41:45 +01:00
|
|
|
"args": ["--build", "\"build\"", "-j", "8"],
|
2021-12-13 09:40:04 +01:00
|
|
|
"options": {
|
|
|
|
"cwd": "${workspaceFolder}"
|
|
|
|
},
|
2021-12-14 19:29:25 +01:00
|
|
|
"problemMatcher": ["$gcc"],
|
2021-12-13 09:40:04 +01:00
|
|
|
"group": {
|
|
|
|
"kind": "build",
|
|
|
|
"isDefault": true
|
|
|
|
}
|
|
|
|
},
|
2021-12-13 18:35:04 +01:00
|
|
|
{
|
|
|
|
"type": "shell",
|
2021-12-14 19:29:25 +01:00
|
|
|
"label": "Re-build project",
|
2021-12-13 18:35:04 +01:00
|
|
|
"command": "cmake",
|
2022-01-15 00:41:45 +01:00
|
|
|
"args": ["--build", "\"build\"", "--clean-first", "-v", "-j", "8"],
|
2021-12-13 18:35:04 +01:00
|
|
|
"options": {
|
|
|
|
"cwd": "${workspaceFolder}"
|
|
|
|
},
|
2021-12-14 19:29:25 +01:00
|
|
|
"problemMatcher": ["$gcc"],
|
2021-12-13 18:35:04 +01:00
|
|
|
},
|
2021-12-13 09:40:04 +01:00
|
|
|
{
|
|
|
|
"type": "shell",
|
|
|
|
"label": "Clean project",
|
|
|
|
"command": "cmake",
|
2021-12-14 19:29:25 +01:00
|
|
|
"args": ["--build", "\"build\"", "--target", "clean"],
|
2021-12-13 09:40:04 +01:00
|
|
|
"options": {
|
|
|
|
"cwd": "${workspaceFolder}"
|
|
|
|
},
|
|
|
|
"problemMatcher": []
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "shell",
|
|
|
|
"label": "Run application",
|
2021-12-13 18:35:04 +01:00
|
|
|
"command": "${workspaceFolder}\\build\\LwLibPROJECT.exe",
|
2021-12-13 09:40:04 +01:00
|
|
|
"args": [],
|
|
|
|
"problemMatcher": [],
|
|
|
|
},
|
|
|
|
]
|
|
|
|
}
|