Last active
June 13, 2020 07:33
-
-
Save matjam/f65c8e5094785372cb08bf9346b53e36 to your computer and use it in GitHub Desktop.
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
{ | |
"configurations": [ | |
{ | |
"name": "Win32", | |
"includePath": [ | |
"${workspaceFolder}/**", | |
"${vcpkgRoot}/x64-windows/include", | |
"${vcpkgRoot}/x64-windows-static/include", | |
"C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.26.28801/include" | |
], | |
"defines": [ | |
"_DEBUG", | |
"UNICODE", | |
"_UNICODE" | |
], | |
"windowsSdkVersion": "10.0.18362.0", | |
"compilerPath": "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.26.28801/bin/Hostx64/x64/cl.exe", | |
"cStandard": "c11", | |
"cppStandard": "c++17", | |
"configurationProvider": "ms-vscode.cmake-tools" | |
}, | |
{ | |
"name": "MacOS", | |
"includePath": [ | |
"${workspaceFolder}/**", | |
"${vcpkgRoot}/x64-osx/include" | |
], | |
"defines": [ | |
"_DEBUG", | |
"UNICODE", | |
"_UNICODE" | |
], | |
"windowsSdkVersion": "10.0.18362.0", | |
"compilerPath": "/usr/bin/clang++", | |
"cStandard": "c11", | |
"cppStandard": "c++17", | |
"configurationProvider": "ms-vscode.cmake-tools" | |
}, | |
{ | |
"name": "Linux", | |
"defines": [], | |
"compilerPath": "/usr/bin/clang", | |
"configurationProvider": "ms-vscode.cmake-tools", | |
"intelliSenseMode": "clang-x64", | |
"includePath": [ | |
"${vcpkgRoot}/x64-linux/include", | |
"/usr/include" | |
], | |
"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