Modification de la tâche de build - pour créer le répertoire build automatiquement

This commit is contained in:
Samuel 2026-05-04 20:46:27 +02:00
parent 4ff4b2c8bf
commit ac1df80dc1

4
.vscode/tasks.json vendored
View File

@ -2,7 +2,7 @@
"tasks": [ "tasks": [
{ {
"type": "shell", "type": "shell",
"command": "cd build; cmake ../; make", "command": "mkdir -p build; cd build; cmake ../; make",
"label": "CMake in build/", "label": "CMake in build/",
"problemMatcher": [], "problemMatcher": [],
"group": { "group": {
@ -13,7 +13,7 @@
{ {
"type": "shell", "type": "shell",
"command": "cd build; cmake ../; make Flash", "command": "cd build; cmake ../; make Flash",
"label": "CMake & Make & Flash", "label": "mkdir -p build; CMake & Make & Flash",
"problemMatcher": [], "problemMatcher": [],
"group": { "group": {
"kind": "build", "kind": "build",