Skip to content

Instantly share code, notes, and snippets.

@matjam
Last active June 13, 2020 07:33
Show Gist options
  • Save matjam/f65c8e5094785372cb08bf9346b53e36 to your computer and use it in GitHub Desktop.
Save matjam/f65c8e5094785372cb08bf9346b53e36 to your computer and use it in GitHub Desktop.
{
"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