adds vscode setup

This commit is contained in:
2024-04-05 08:41:47 +02:00
parent 90002786a4
commit f4506a064b
2 changed files with 41 additions and 0 deletions

16
.vscode/tasks.json vendored Normal file
View File

@@ -0,0 +1,16 @@
{
"version": "2.0.0",
"tasks": [
{
"type": "cmake",
"label": "CMake: build",
"command": "build",
"targets": [
"all"
],
"group": "build",
"problemMatcher": ["$gcc"],
"detail": "CMake template build task",
}
]
}