Skip to content

Instantly share code, notes, and snippets.

@blaquee
Forked from chappjc/c_cpp_properties.json
Created July 10, 2017 18:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save blaquee/ca53030844cfc86b194486bac1e75e7e to your computer and use it in GitHub Desktop.
Save blaquee/ca53030844cfc86b194486bac1e75e7e to your computer and use it in GitHub Desktop.
VS Code C++ project properties for VS 2015 w/ Windows SDK 10.0
{
"configurations": [
{
"name": "Mac",
"includePath": ["/usr/include"],
"browse" : {
"limitSymbolsToIncludedHeaders" : true,
"databaseFilename" : ""
}
},
{
"name": "Linux",
"includePath": ["/usr/include"],
"browse" : {
"limitSymbolsToIncludedHeaders" : true,
"databaseFilename" : ""
}
},
{
"name": "Win32",
"includePath": ["c:/Program Files (x86)/Microsoft Visual Studio 14.0/VC/include",
"c:/Program Files (x86)/Microsoft Visual Studio 14.0/VC/crt/src",
"C:/Program Files (x86)/Windows Kits/10/Include/10.0.10240.0/ucrt"],
"browse" : {
"limitSymbolsToIncludedHeaders" : true,
"databaseFilename" : ""
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment