Minor build fixes for VSCode, extra ignore.
This commit is contained in:
parent
789af69e52
commit
500232bb83
2 changed files with 4 additions and 3 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -3,3 +3,4 @@ bootloader/
|
||||||
modules/
|
modules/
|
||||||
tools/
|
tools/
|
||||||
zephyr/
|
zephyr/
|
||||||
|
build/
|
||||||
|
|
6
.vscode/tasks.json
vendored
6
.vscode/tasks.json
vendored
|
@ -6,7 +6,7 @@
|
||||||
{
|
{
|
||||||
"label": "Build",
|
"label": "Build",
|
||||||
"type": "shell",
|
"type": "shell",
|
||||||
"command": "west build",
|
"command": "cd app && west build",
|
||||||
"group": {
|
"group": {
|
||||||
"kind": "build",
|
"kind": "build",
|
||||||
"isDefault": true
|
"isDefault": true
|
||||||
|
@ -15,13 +15,13 @@
|
||||||
{
|
{
|
||||||
"label": "Flash",
|
"label": "Flash",
|
||||||
"type": "shell",
|
"type": "shell",
|
||||||
"command": "west flash",
|
"command": "cd app && west flash",
|
||||||
"group": "test"
|
"group": "test"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"label": "Debug",
|
"label": "Debug",
|
||||||
"type": "shell",
|
"type": "shell",
|
||||||
"command": "west debug",
|
"command": "cd app && west debug",
|
||||||
"group": "test"
|
"group": "test"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|
Loading…
Add table
Reference in a new issue