Wrote Visual Studo Code/Codium build tasks
This commit is contained in:
@@ -207,9 +207,6 @@ ModelManifest.xml
|
||||
# Intellij IDEs
|
||||
.idea/
|
||||
|
||||
# Visual studio code project files
|
||||
.vscode/
|
||||
|
||||
# CMake build cache files
|
||||
.cache/
|
||||
|
||||
|
||||
Vendored
+24
@@ -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
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user