feat: add VS Code debugging configuration and environment dependencies for gcompose

This commit is contained in:
AndreaRigoni
2026-04-08 08:21:13 +00:00
parent 3af983a955
commit 03a3130855
4 changed files with 53 additions and 0 deletions

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

@@ -0,0 +1,17 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "Build gcompose",
"type": "shell",
"command": "/home/share/micromamba/bin/micromamba run -n uLib cmake --build build --target gcompose -j$(nproc)",
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": [
"$gcc"
]
}
]
}