Création du dossier de build par défaut

This commit is contained in:
Samuel 2026-02-15 15:52:50 +01:00
parent 52dfbc2ead
commit 5ef0fe17fe

6
.vscode/tasks.json vendored
View File

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