From 5b6805dcc76556a4cc3322a3438c718741a1e621 Mon Sep 17 00:00:00 2001 From: Ben Carter Date: Tue, 1 Oct 2024 22:56:41 -0400 Subject: [PATCH] Added studio code props / settins --- .vscode/c_cpp_properties.json | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .vscode/c_cpp_properties.json 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 +}