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