Wrote Visual Studo Code/Codium build tasks

This commit is contained in:
Molasses
2022-05-04 10:52:43 +02:00
committed by GitHub
parent add4f2ffaa
commit 41567dbd2a
2 changed files with 24 additions and 3 deletions
-3
View File
@@ -207,9 +207,6 @@ ModelManifest.xml
# Intellij IDEs
.idea/
# Visual studio code project files
.vscode/
# CMake build cache files
.cache/
+24
View File
@@ -0,0 +1,24 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "Build Debug",
"type": "shell",
"command": "cmake -B build -DCMAKE_BUILD_TYPE=Debug; cd build; make",
"problemMatcher": ["gcc"],
"group": {
"kind": "build"
}
},
{
"label": "Build Release",
"type": "shell",
"command": "cmake -B build -DCMAKE_BUILD_TYPE=Release; cd build; make",
"problemMatcher": ["gcc"],
"group": {
"kind": "build",
"isDefault": true
}
}
]
}