From 4950b5235963f19169291c4403f0ecd376e2a6a6 Mon Sep 17 00:00:00 2001 From: Ilya Fedin <fedin-ilja2010@ya.ru> Date: Thu, 13 Feb 2025 23:54:43 +0400 Subject: [PATCH] Don't set CMAKE_EXPORT_COMPILE_COMMANDS via cmake.configureSettings It's controlled by cmake.exportCompileCommandsFile and defaults to true --- .devcontainer.json | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.devcontainer.json b/.devcontainer.json index 30bff840d..366f6ed46 100644 --- a/.devcontainer.json +++ b/.devcontainer.json @@ -9,10 +9,7 @@ "--compile-commands-dir=${workspaceFolder}/out" ], "cmake.generator": "Ninja Multi-Config", - "cmake.buildDirectory": "${workspaceFolder}/out", - "cmake.configureSettings": { - "CMAKE_EXPORT_COMPILE_COMMANDS": "ON" - } + "cmake.buildDirectory": "${workspaceFolder}/out" }, "extensions": [ "ms-vscode.cpptools-extension-pack",