Files
Vector3D/.vscode/tasks.json

18 lines
421 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "build_tests",
"type": "shell",
"command": "cd build && ninja",
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": [
"$gcc"
],
"detail": "Generated task to build unit test executable"
}
]
}