42 lines
976 B
JSON
42 lines
976 B
JSON
{
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"label": "build",
|
|
"type": "shell",
|
|
"group": {
|
|
"kind": "build",
|
|
"isDefault": true
|
|
},
|
|
"linux": {
|
|
"command": "bash",
|
|
"args": [
|
|
"-c",
|
|
"'mkdir -p build && cd build && cmake .. && make'"
|
|
]
|
|
}
|
|
},
|
|
{
|
|
"label": "build & run",
|
|
"type": "shell",
|
|
"linux": {
|
|
"command": "bash",
|
|
"args": [
|
|
"-c",
|
|
"'make run'"
|
|
]
|
|
}
|
|
},
|
|
{
|
|
"label": "clean",
|
|
"type": "shell",
|
|
"linux": {
|
|
"command": "bash",
|
|
"args": [
|
|
"-c",
|
|
"'cd build && make clean'"
|
|
]
|
|
}
|
|
}
|
|
]
|
|
}
|