Created
February 8, 2019 20:14
-
-
Save mpusz/662b7773053fcc48134ebd21a1eb9710 to your computer and use it in GitHub Desktop.
VS Code C++ Configuration
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"env" : { | |
"includePath": [ | |
"${workspaceFolder}/**" | |
], | |
"defines": [] | |
}, | |
"configurations": [ | |
{ | |
"name": "Win32", | |
"intelliSenseMode": "msvc-x64", | |
"compilerPath": "C:/Program Files (x86)/Microsoft Visual Studio/2017/Professional/VC/Tools/MSVC/14.16.27023/bin/Hostx64/x64/cl.exe", | |
"cStandard": "c11", | |
"cppStandard": "c++17", | |
"windowsSdkVersion": "10.0.17763.0", | |
"includePath": [ | |
"${env:includePath}" | |
], | |
"defines": [ | |
"${env:defines}", | |
"_DEBUG", | |
"UNICODE", | |
"_UNICODE" | |
], | |
"configurationProvider": "vector-of-bool.cmake-tools", | |
"compileCommands": "${workspaceFolder}/build/compile_commands.json" | |
}, | |
{ | |
"name": "MinGW", | |
"intelliSenseMode": "gcc-x64", | |
"compilerPath": "C:/Program Files/mingw-w64/bin/gcc.exe", | |
"cStandard": "c11", | |
"cppStandard": "c++17", | |
"includePath": [ "${env:includePath}" ], | |
"defines": [ "${env:defines}" ] | |
}, | |
{ | |
"name": "WSL-gcc48", | |
"intelliSenseMode": "gcc-x64", | |
"compilerPath": "/usr/bin/gcc-4.8", | |
"cStandard": "c11", | |
"cppStandard": "c++11", | |
"includePath": [ "${env:includePath}" ], | |
"defines": [ "${env:defines}" ] | |
}, | |
{ | |
"name": "WSL-gcc8", | |
"intelliSenseMode": "gcc-x64", | |
"compilerPath": "/usr/bin/gcc-8", | |
"cStandard": "c11", | |
"cppStandard": "c++17", | |
"includePath": [ "${env:includePath}" ], | |
"defines": [ "${env:defines}" ] | |
} | |
], | |
"version": 4 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment