Integrate cmake with vscode

This commit is contained in:
Rafał Grodziński
2025-06-21 17:11:38 +09:00
parent 7a76bb7e33
commit 1da1622b8a
3 changed files with 11 additions and 15 deletions

15
.vscode/tasks.json vendored
View File

@@ -2,22 +2,13 @@
"version": "2.0.0",
"tasks": [
{
"label": "Build Bits Runner Builder",
"type": "shell",
"command": "cmake --build build",
"label": "Build Bits Runner Builder (Debug)",
"type": "cmake",
"command": "build",
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "Clean built product",
"type": "shell",
"command": "cmake --build build --target clean",
"group": {
"kind": "none",
"isDefault": false
}
}
]
}