Modification de la tâche de build - pour créer le répertoire build automatiquement
This commit is contained in:
parent
4ff4b2c8bf
commit
ac1df80dc1
4
.vscode/tasks.json
vendored
4
.vscode/tasks.json
vendored
@ -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",
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user