Files
fall-fever/.vscode/tasks.json
2020-08-31 00:56:04 +02:00

20 lines
497 B
JSON

{
// 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",
"command": "cmake --build . -j4",
"options": {
"cwd": "build"
},
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
}
}
]
}