VSCode: Fix windows command line

This commit is contained in:
Dirk Ziegelmeier 2018-10-08 08:14:55 +02:00
parent ff44049baf
commit 0f100b8c5b

6
.vscode/tasks.json vendored
View File

@ -16,7 +16,7 @@
"command": "cd ${workspaceFolder}/contrib/ports/unix/example_app/build && cmake --build ."
},
"windows": {
"command": "cd ${workspaceFolder}/contrib/ports/win32/example_app/build && cmake --build ."
"command": "cd ${workspaceFolder}/contrib/ports/win32/example_app/build & cmake --build ."
}
},
{
@ -28,7 +28,7 @@
"command": "cd ${workspaceFolder}/contrib/ports/unix/example_app && mkdir build && cd build && cmake .."
},
"windows": {
"command": "cd ${workspaceFolder}/contrib/ports/win32/example_app && mkdir build && cd build && cmake .."
"command": "cd ${workspaceFolder}/contrib/ports/win32/example_app & mkdir build & cd build & cmake .."
}
},
{
@ -40,7 +40,7 @@
"command": "cd ${workspaceFolder}/contrib/ports/unix/example_app/build && cmake --build . --target lwipdocs"
},
"windows": {
"command": "cd ${workspaceFolder}/contrib/ports/win32/example_app/build && cmake --build . --target lwipdocs"
"command": "cd ${workspaceFolder}/contrib/ports/win32/example_app/build & cmake --build . --target lwipdocs"
},
}
]