Skip to content

Commit

Permalink
chore(language server): fix path for headers in the vscode json
Browse files Browse the repository at this point in the history
  • Loading branch information
552020 committed May 23, 2024
1 parent 8424b18 commit 6624460
Show file tree
Hide file tree
Showing 2 changed files with 57 additions and 37 deletions.
37 changes: 0 additions & 37 deletions .vscode/c_cpp_propertied.json

This file was deleted.

57 changes: 57 additions & 0 deletions .vscode/c_cpp_properties.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
{
"configurations": [
{
"name": "Mac-ARM",
"includePath": [
"${workspaceFolder}/**",
"/usr/local/opt/openssl/include",
"/opt/homebrew/opt/openssl/include",
"/opt/homebrew/include"
],
"macFrameworkPath": ["/Library/Developer/CommandLineTools/SDKs/MacOSX14.sdk/System/Library/Frameworks"],
"defines": [],
"compilerPath": "/Users/stefano/.brew/opt/llvm/bin/clang",
"cStandard": "c17",
"cppStandard": "c++17",
"intelliSenseMode": "macos-clang-arm64"
},
{
"name": "Mac-x86",
"includePath": [
"${workspaceFolder}/**",
"/usr/local/opt/openssl/include",
"/opt/homebrew/opt/openssl/include",
"/opt/homebrew/include"
],
"macFrameworkPath": ["/Library/Developer/CommandLineTools/SDKs/MacOSX14.sdk/System/Library/Frameworks"],
"defines": [],
"compilerPath": "/usr/bin/clang",
"cStandard": "c17",
"cppStandard": "c++17",
"intelliSenseMode": "macos-clang-x64"
},
{
"name": "Linux",
"cppStandard": "c++98",
"includePath": ["${workspaceFolder}/**", "/usr/include/openssl"],
"defines": [],
"compilerPath": "/usr/bin/gcc",
"cStandard": "c99",
"intelliSenseMode": "linux-gcc-x64"
}
],
"version": 4,
"workbench.colorCustomizations": {
"activityBar.background": "#063516",
"titleBar.activeBackground": "#094B1F",
"titleBar.activeForeground": "#F3FEF6"
},
"files.associations": {
"*.cpp": "cpp",
"*.h": "cpp",
"*.md": "markdown",
"*.sh": "shellscript"
},
"C_Cpp.clang_format_style": "file",
"C_Cpp.clang_format_fallbackStyle": "Google"
}

0 comments on commit 6624460

Please sign in to comment.