Files
Vector3D/.vscode/tasks.json

16 lines
404 B
JSON

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