22 lines
497 B
JSON
22 lines
497 B
JSON
{
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"label": "build",
|
|
"type": "shell",
|
|
"command": "cmake -S . -B build && cmake --build build",
|
|
"group": "build",
|
|
"problemMatcher": [
|
|
"$gcc"
|
|
]
|
|
},
|
|
{
|
|
"label": "build Frontend",
|
|
"type": "shell",
|
|
"command": "npm run build",
|
|
"options": {
|
|
"cwd": "frontend"
|
|
}
|
|
}
|
|
]
|
|
} |