From c35dd079ee09c8e45da0520a8342726dfaa2c049 Mon Sep 17 00:00:00 2001 From: Dirk Ziegelmeier Date: Sat, 13 Oct 2018 11:26:32 +0200 Subject: [PATCH] Adapt launch.json to top-level CMakeLists.txt --- .vscode/launch.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index 77f79624..35b1ebd4 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -22,13 +22,13 @@ } ], "linux": { - "cwd": "${workspaceFolder}/contrib/ports/unix/example_app/build", - "program": "${workspaceFolder}/contrib/ports/unix/example_app/build/example_app", + "cwd": "${workspaceFolder}/build/contrib/ports/unix/example_app", + "program": "${workspaceFolder}/build/contrib/ports/unix/example_app/example_app", }, "windows": { - "cwd": "${workspaceFolder}/contrib/ports/win32/example_app/build", - "program": "${workspaceFolder}/contrib/ports/win32/example_app/build/example_app", + "cwd": "${workspaceFolder}/build/contrib/ports/win32/example_app", + "program": "${workspaceFolder}/build/contrib/ports/win32/example_app/example_app", } } ] -} \ No newline at end of file +}