29 lines
653 B
JSON
29 lines
653 B
JSON
{
|
|
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
|
// for the documentation about the tasks.json format
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"label": "run",
|
|
"type": "shell",
|
|
"command": "./fb_application_example",
|
|
"options": {"cwd": "${workspaceFolder}/build/bin"},
|
|
"dependsOn":["build"],
|
|
"group": {
|
|
"kind": "test",
|
|
"isDefault": true
|
|
}
|
|
},
|
|
{
|
|
"label": "build",
|
|
"type": "shell",
|
|
"command": "make",
|
|
"options": {"cwd": "${workspaceFolder}/build"},
|
|
"args": ["-j12"],
|
|
"group": {
|
|
"kind": "build",
|
|
"isDefault": true
|
|
},
|
|
}
|
|
]
|
|
} |