Skip to content

Instantly share code, notes, and snippets.

@aroraayush
Created June 23, 2020 17:30
Show Gist options
  • Save aroraayush/6ab2012c6117316492d1920f49d31c77 to your computer and use it in GitHub Desktop.
Save aroraayush/6ab2012c6117316492d1920f49d31c77 to your computer and use it in GitHub Desktop.
VS Code - C++ Mac Setup
{
"configurations": [
{
"name": "Mac",
"includePath": [
"${workspaceFolder}/**",
"/usr/bin/",
"/usr/local/include",
"/Library/Developer/CommandLineTools/usr/include/c++/v1/",
"/Library/Developer/CommandLineTools/usr/lib/clang/11.0.3/include",
"/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include",
"/Library/Developer/CommandLineTools/usr/include"
],
"browse": {
"path": [
"${workspaceFolder}/**",
"/Library/Developer/CommandLineTools/usr/include/c++/v1/",
"/Library/Developer/CommandLineTools/usr/lib/clang/11.0.3/include",
"/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include",
"/Library/Developer/CommandLineTools/usr/include"
],
"limitSymbolsToIncludedHeaders": true,
"databaseFilename": ""
},
"defines": [],
"macFrameworkPath": [
"/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks",
"/Library/Frameworks"
],
"compilerPath": "/usr/bin/g++",
"cStandard": "c11",
"cppStandard": "c++17",
"intelliSenseMode": "clang-x64"
}
],
"version": 4
}
{
"files.associations": {
"iostream": "cpp",
"iosfwd": "cpp"
},
"C_Cpp.intelliSenseEngineFallback": "Disabled"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment