-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathc_cpp_properties.json
More file actions
31 lines (30 loc) · 967 Bytes
/
c_cpp_properties.json
File metadata and controls
31 lines (30 loc) · 967 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{
"env": {
// ...
"VCPKG_ROOT": "C:/Tools/vcpkg" // example of setting VCPKG_ROOT
// ...
},
"configurations": [
{
"name": "Win32",
"includePath": [
"${workspaceFolder}/include",
"${env:VCPKG_ROOT}/x64-windows/include",
"${env:VCPKG_ROOT}/x64-windows-static/include",
"${env:VCPKG_ROOT}/x86-windows/include"
],
"defines": [
"_DEBUG",
"UNICODE",
"_UNICODE"
],
"windowsSdkVersion": "10.0.19041.0",
"compilerPath": "C:/Software/VisualStuido/Community/VC/Tools/MSVC/14.33.31629/bin/Hostx64/x64/cl.exe",
"cStandard": "c17",
"cppStandard": "c++17",
"intelliSenseMode": "windows-msvc-x64",
"configurationProvider": "ms-vscode.cmake-tools"
}
],
"version": 4
}