picard_cpp/.vscode/tasks.json

27 lines
774 B
JSON
Raw Normal View History

2023-10-23 23:07:00 +08:00
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "BuildDebug",
"type": "shell",
"command": "cd build; cmake .. -DCMAKE_BUILD_TYPE=Debug; make -j 8",
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "BuildRelease",
"type": "shell",
"command": "cd build; cmake .. -DCMAKE_BUILD_TYPE=Release; make -j 8",
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
}
}
]
}