Skip to content

Commit

Permalink
cmakeConsole: Fix local clean task
Browse files Browse the repository at this point in the history
Signed-off-by: Andre Riesco <[email protected]>
  • Loading branch information
andreriesco committed Oct 16, 2023
1 parent 1b1b4aa commit a5cd4b8
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions cmakeConsole/.vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -243,12 +243,12 @@
},
{
"label": "clean-local",
"detail": "Clean the application build directory.",
"command": "make",
"detail": "Clean the local application build directory.",
"command": "cmake",
"type": "shell",
"args": [
"--build",
"build-arm64",
"build-local",
"--target",
"clean"
],
Expand All @@ -262,7 +262,7 @@
},
{
"label": "clean-arm",
"detail": "Clean the application build directory.",
"detail": "Clean the build folder for armhf using the\ncontainer SDK toolchain.",
"command": "DOCKER_HOST=",
"type": "shell",
"args": [
Expand Down Expand Up @@ -293,7 +293,7 @@
},
{
"label": "clean-arm64",
"detail": "Clean the application build directory.",
"detail": "Clean the build folder for arm64 using the\ncontainer SDK toolchain.",
"command": "DOCKER_HOST=",
"type": "shell",
"args": [
Expand Down

0 comments on commit a5cd4b8

Please sign in to comment.