-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCMakeSettings.json
More file actions
33 lines (33 loc) · 937 Bytes
/
Copy pathCMakeSettings.json
File metadata and controls
33 lines (33 loc) · 937 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
32
33
{
"configurations": [
{
"name": "x64-Debug",
"generator": "Visual Studio 17 2022 Win64",
"configurationType": "Debug",
"buildRoot": "${projectDir}\\out\\build\\${name}",
"installRoot": "${projectDir}\\out\\install\\${name}",
"architecture": "x64",
"inheritEnvironments": [ "msvc_x64_x64" ],
"variables": [
{
"name": "CMAKE_TOOLCHAIN_FILE",
"value": "C:/Users/maxij/vcpkg/scripts/buildsystems/vcpkg.cmake",
"type": "PATH"
},
{
"name": "CMAKE_PREFIX_PATH",
"value": "C:/Users/maxij/vcpkg/installed/x64-windows",
"type": "PATH"
},
{
"name": "CMAKE_WORKING_DIRECTORY",
"value": "${projectDir}",
"type": "PATH"
}
],
"cacheVariables": {
"VCPKG_TARGET_TRIPLET": "x64-windows"
}
}
]
}