From a5a29eb66f5f4f942860fab0bb8ef7cceaa797ee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ricardo=20Montan=CC=83ana?= Date: Tue, 2 Apr 2024 09:48:03 +0200 Subject: [PATCH] Update compiler configuration for Mac --- .vscode/c_cpp_properties.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.vscode/c_cpp_properties.json b/.vscode/c_cpp_properties.json index 0201ede..07aeaac 100644 --- a/.vscode/c_cpp_properties.json +++ b/.vscode/c_cpp_properties.json @@ -3,25 +3,25 @@ { "name": "Mac", "includePath": [ - "/home/rmontanana/Code/BayesNet/**" + "/Users/rmontanana/Code/BayesNet/**" ], "defines": [], "macFrameworkPath": [ - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks" + "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include" ], "cStandard": "c17", "cppStandard": "c++17", - "compileCommands": "/home/rmontanana/Code/BayesNet/cmake-build-release/compile_commands.json", - "compileCommandsInCppPropertiesJson": "${workspaceFolder}/cmake-build-release/compile_commands.json", + "compileCommands": "", "intelliSenseMode": "macos-clang-arm64", "mergeConfigurations": false, "browse": { "path": [ - "/home/rmontanana/Code/BayesNet/**", + "/Users/rmontanana/Code/BayesNet/**", "${workspaceFolder}" ], "limitSymbolsToIncludedHeaders": true - } + }, + "configurationProvider": "ms-vscode.cmake-tools" }, { "name": "Linux",