AdventOfCode/C_Tempate/.vscode/tasks.json

43 lines
976 B
JSON
Raw Normal View History

{
"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'"
]
}
}
]
}