diff options
Diffstat (limited to '.vscode')
| -rw-r--r-- | .vscode/c_cpp_properties.json | 3 | ||||
| -rw-r--r-- | .vscode/settings.json | 5 |
2 files changed, 3 insertions, 5 deletions
diff --git a/.vscode/c_cpp_properties.json b/.vscode/c_cpp_properties.json index eeb9f71..2091cd3 100644 --- a/.vscode/c_cpp_properties.json +++ b/.vscode/c_cpp_properties.json @@ -9,8 +9,7 @@ "compilerPath": "/usr/bin/g++", "cppStandard": "c++20", "intelliSenseMode": "gcc-x64", - "configurationProvider": "ms-vscode.cmake-tools", - "compileCommands": "${workspaceFolder}/build/compile_commands.json" + "configurationProvider": "ms-vscode.cmake-tools" } ], "version": 4 diff --git a/.vscode/settings.json b/.vscode/settings.json index 8db3e08..72ff434 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,9 +1,8 @@ { // CMake Configuration - "cmake.configureOnOpen": false, + "cmake.configureOnOpen": true, "cmake.useCMakePresets": "always", "cmake.sourceDirectory": "${workspaceFolder}/source", - "cmake.skipConfigureIfCachePresent": true, // C++ Configuration "[cpp]": { @@ -11,7 +10,7 @@ }, "C_Cpp.autoAddFileAssociations": false, "C_Cpp.intelliSenseEngine": "default", - "C_Cpp.errorSquiggles": "enabledIfIncludesResolve", + "C_Cpp.errorSquiggles": "enabled", "C_Cpp.autocomplete": "default", // RST Configuration |
