From d217500c85f25f22a4ce39e39a91e3186bdec34b Mon Sep 17 00:00:00 2001 From: qhdwight Date: Sun, 24 Sep 2023 19:06:46 -0400 Subject: [PATCH] Fix .vscode/settings.json cmake.buildDirectory --- .vscode/settings.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index 551b645dd..352939080 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -3,7 +3,7 @@ // Catkin only works with Make... ideally we could use Ninja "cmake.generator": "Unix Makefiles", // Set to the catkin build directory - "cmake.buildDirectory": "../../build/mrover", + "cmake.buildDirectory": "${workspaceFolder}/../../build/mrover", // We want catkin to configure // VSCode will try to use its own toolchain and ignore the catkin profile "cmake.configureOnOpen": false,