aoc25/.vscode/tasks.json

24 lines
No EOL
644 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "CMake: build",
"type": "shell",
"command": "/usr/bin/cmake",
"args": [
"--build",
"${workspaceFolder}/build",
"--config",
"Debug",
"--target",
"${command:cmake.buildTargetName}"
],
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": "$gcc",
"detail": "Builds the target currently selected in the CMake status bar"
}
]
}