Files
c_pompes/.vscode/tasks.json

22 lines
551 B
JSON
Raw Normal View History

2025-11-30 09:48:43 +01:00
{
2025-12-03 23:20:46 +01:00
"version": "2.0.0",
2025-11-30 09:48:43 +01:00
"tasks": [
{
2025-12-03 23:20:46 +01:00
"label": "CMake: build",
"type": "shell",
"command": "cmake --build build --config Debug",
2025-11-30 09:48:43 +01:00
"group": {
"kind": "build",
"isDefault": true
},
2025-12-03 23:20:46 +01:00
"problemMatcher": ["$gcc"]
},
{
"label": "CMake: configure",
"type": "shell",
"command": "cmake -S . -B build -DCMAKE_EXPORT_COMPILE_COMMANDS=ON",
"problemMatcher": ["$gcc"]
2025-11-30 09:48:43 +01:00
}
2025-12-03 23:20:46 +01:00
]
}