Skip to content

Instantly share code, notes, and snippets.

@agniswarm
Last active July 20, 2018 18:12
Show Gist options
  • Save agniswarm/fc9bfde949149786a76675e77d1e5b92 to your computer and use it in GitHub Desktop.
Save agniswarm/fc9bfde949149786a76675e77d1e5b92 to your computer and use it in GitHub Desktop.
The VS code config file for C++
{
"configurations": [
{
"name": "Win32",
"includePath": [
"${workspaceFolder}/**",
"C:/MinGW/**"
],
"defines": [
"_DEBUG",
"UNICODE",
"_UNICODE"
],
"compilerPath": "C:\\MinGW\\bin\\gcc.exe",
"intelliSenseMode": "msvc-x64",
"browse": {
"path": [
"${workspaceFolder}",
"C:/MinGW/**"
],
"limitSymbolsToIncludedHeaders": true,
"databaseFilename": ""
},
"cStandard": "c11",
"cppStandard": "c++17"
}
],
"version": 4
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment