31 lines
715 B
JSON
31 lines
715 B
JSON
{
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"label": "build",
|
|
"type": "shell",
|
|
"command": "cmake",
|
|
"args": [
|
|
"--build",
|
|
"${workspaceFolder}/build"
|
|
],
|
|
"group": {
|
|
"kind": "build",
|
|
"isDefault": true
|
|
},
|
|
"problemMatcher": []
|
|
},
|
|
{
|
|
"label": "configure",
|
|
"type": "shell",
|
|
"command": "cmake",
|
|
"args": [
|
|
"-S",
|
|
"${workspaceFolder}",
|
|
"-B",
|
|
"${workspaceFolder}/build"
|
|
],
|
|
"problemMatcher": []
|
|
}
|
|
]
|
|
} |