From 86f32910ab078f5ea6edbaf7878e7e1b2589c78d Mon Sep 17 00:00:00 2001 From: Giovanni Fregonese Date: Fri, 22 Mar 2024 14:09:42 +0100 Subject: [PATCH] Fix settings.json cmake merged commands location (#1621) --- .vscode/settings.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index 890d8914a..8c9319f8a 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,6 +1,6 @@ { "C_Cpp.default.compileCommands": "${config:cmake.buildDirectory}/compile_commands.json", - "cmake.mergedCompileCommands": "${config:cmake.buildDirectory}/compile_commands.json", + "cmake.mergedCompileCommands": "${command:cmake.buildDirectory}/compile_commands.json", "clangd.arguments": [ "--compile-commands-dir=${config:cmake.buildDirectory}/" ],