2018-01-29 23:44:12 -06:00
|
|
|
{
|
|
|
|
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
|
|
|
// for the documentation about the tasks.json format
|
|
|
|
"version": "2.0.0",
|
|
|
|
"tasks": [
|
|
|
|
{
|
|
|
|
"label": "build",
|
|
|
|
"type": "shell",
|
2018-02-02 01:15:53 -06:00
|
|
|
"command": "cmake --build ${workspaceFolder}/build/current --target install -- -j",
|
2018-01-29 23:44:12 -06:00
|
|
|
"group": {
|
|
|
|
"kind": "build",
|
|
|
|
"isDefault": true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|