Skip to content

Instantly share code, notes, and snippets.

@chappjc
Created January 17, 2017 23:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save chappjc/99fe62c26d21dc2e5288f651cebae61e to your computer and use it in GitHub Desktop.
Save chappjc/99fe62c26d21dc2e5288f651cebae61e 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