added additiona vscode settings

This commit is contained in:
2024-08-18 01:45:55 -04:00
parent 8990cd8f6c
commit 9f1e0677a0
2 changed files with 22 additions and 22 deletions

View File

@@ -1,22 +1,21 @@
{
"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
}
"configurations": [
{
"name": "AzerothCore",
"includePath": [
"${workspaceFolder}/src/common/Logging/**",
"${workspaceFolder}/src",
"${workspaceFolder}/deps",
"${workspaceFolder}/**",
"/opt/homebrew/include"
],
"defines": [
"AZEROTHCORE"
],
"cStandard": "c11",
"cppStandard": "c++17",
"intelliSenseMode": "macos-clang-x64"
}
],
"version": 4
}

View File

@@ -136,5 +136,6 @@
},
"deno.enable": true,
"deno.path": "deps/deno/bin/deno",
"deno.lint": true
"deno.lint": true,
"C_Cpp.default.compilerPath": "/usr/bin/clang++"
}