27 lines
568 B
JSON
27 lines
568 B
JSON
{
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"label": "cmake",
|
|
"type": "shell",
|
|
"command": "cmake",
|
|
"args": [
|
|
"."
|
|
],
|
|
"group": {
|
|
"kind": "build",
|
|
"isDefault": true
|
|
}
|
|
},
|
|
{
|
|
"label": "make",
|
|
"type": "shell",
|
|
"command": "make",
|
|
"group": {
|
|
"kind": "build",
|
|
"isDefault": true
|
|
},
|
|
"dependsOn": "cmake"
|
|
}
|
|
]
|
|
} |