-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCMakePresets.json
40 lines (40 loc) · 1015 Bytes
/
CMakePresets.json
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
34
35
36
37
38
39
40
{
"version": 3,
"configurePresets": [
{
"name": "windows-base",
"hidden": true,
"description": "Experimental project, only x64 arch is supported.",
"binaryDir": "${sourceDir}/out/build/${presetName}",
"installDir": "${sourceDir}/out/install/${presetName}",
"generator": "Visual Studio 17 2022",
"vendor": {
"microsoft.com/VisualStudioSettings/CMake/1.0": {
"hostOS": [ "Windows" ]
}
},
"cacheVariables": {
"CMAKE_TOOLCHAIN_FILE": "D:/tools/vcpkg/scripts/buildsystems/vcpkg.cmake"
},
"architecture": {
"value": "x64",
"strategy": "set"
}
},
{
"name": "x64-release",
"displayName": "x64 Release",
"inherits": "windows-base",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "RelWithDebInfo"
}
}
],
"buildPresets": [
{
"name": "x64-release",
"configurePreset": "x64-release",
"configuration": "RelWithDebInfo"
}
]
}