mirror of
https://github.com/MaJerle/lwshell.git
synced 2025-01-25 13:02:54 +08:00
54 lines
1.3 KiB
JSON
54 lines
1.3 KiB
JSON
|
{
|
||
|
"version": "2.0.0",
|
||
|
|
||
|
/* For this builds, you need
|
||
|
*
|
||
|
* - Ninja build system
|
||
|
* - MSYS2 compiler with ninja support
|
||
|
* - C/C++ extension for VSCode
|
||
|
* - CMake-Tools extension for VSCode
|
||
|
*/
|
||
|
"tasks": [
|
||
|
{
|
||
|
"type": "cppbuild",
|
||
|
"label": "Build project",
|
||
|
"command": "cmake",
|
||
|
"args": [
|
||
|
"--build",
|
||
|
"\"build\""
|
||
|
],
|
||
|
"options": {
|
||
|
"cwd": "${workspaceFolder}"
|
||
|
},
|
||
|
"problemMatcher": [
|
||
|
"$gcc"
|
||
|
],
|
||
|
"group": {
|
||
|
"kind": "build",
|
||
|
"isDefault": true
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
"type": "shell",
|
||
|
"label": "Clean project",
|
||
|
"command": "cmake",
|
||
|
"args": [
|
||
|
"--build",
|
||
|
"\"build\"",
|
||
|
"--target",
|
||
|
"clean"
|
||
|
],
|
||
|
"options": {
|
||
|
"cwd": "${workspaceFolder}"
|
||
|
},
|
||
|
"problemMatcher": []
|
||
|
},
|
||
|
{
|
||
|
"type": "shell",
|
||
|
"label": "Run application",
|
||
|
"command": "${workspaceFolder}\\build\\LwSHELL.exe",
|
||
|
"args": [],
|
||
|
"problemMatcher": [],
|
||
|
},
|
||
|
]
|
||
|
}
|