37 lines
967 B
JSON
37 lines
967 B
JSON
{
|
|
"tasks": [
|
|
{
|
|
"label": "CMake & Make",
|
|
"type": "shell",
|
|
"group": "build",
|
|
|
|
"command": "mkdir -p build && cd build && cmake ../ && make -j $(nproc)",
|
|
|
|
"presentation": {
|
|
"echo": true,
|
|
"reveal": "always",
|
|
"focus": true,
|
|
"panel": "shared",
|
|
"showReuseMessage": true,
|
|
"clear": true
|
|
}
|
|
},
|
|
{
|
|
"label": "CMake & Make & Flash",
|
|
"type": "shell",
|
|
"group": "build",
|
|
|
|
"command": "mkdir -p build && cd build && cmake ../ && make -j $(nproc) Flash",
|
|
|
|
"presentation": {
|
|
"echo": true,
|
|
"reveal": "always",
|
|
"focus": true,
|
|
"panel": "shared",
|
|
"showReuseMessage": true,
|
|
"clear": true
|
|
}
|
|
}
|
|
],
|
|
"version": "2.0.0"
|
|
} |