diff --git a/.vscode/c_cpp_properties.json b/.vscode/c_cpp_properties.json new file mode 100644 index 0000000..7bedce2 --- /dev/null +++ b/.vscode/c_cpp_properties.json @@ -0,0 +1,22 @@ +{ + "configurations": [ + { + "name": "AzerothCore", + "includePath": [ + "${workspaceFolder}/src/common/Logging/**", + "${workspaceFolder}/src", + "${workspaceFolder}/deps", + "${workspaceFolder}/**", + "/opt/homebrew/include" + ], + "defines": [ + "AZEROTHCORE" + ], + "compilerPath": "/usr/bin/clang++", // macOS typically uses clang as the default compiler + "cStandard": "c11", + "cppStandard": "c++17", + "intelliSenseMode": "macos-clang-x64" + } + ], + "version": 4 +}