-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakePresets.json
37 lines (37 loc) · 1.09 KB
/
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
{
"version": 6,
"configurePresets": [
{
"name": "vcpkg",
"architecture": "Win32",
"toolchainFile": "C:/vcpkg/scripts/buildsystems/vcpkg.cmake",
"cacheVariables": {
"CMAKE_GENERATOR_PLATFORM": "Win32",
"VCPKG_TARGET_TRIPLET": "x86-windows-static"
}
},
{
"name": "vcpkg64",
"architecture": "x64",
"toolchainFile": "C:/vcpkg/scripts/buildsystems/vcpkg.cmake",
"cacheVariables": {
"CMAKE_GENERATOR_PLATFORM": "x64",
"VCPKG_TARGET_TRIPLET": "x64-windows-static"
}
}
],
"buildPresets": [
{
"name": "Debug",
"configurePreset": "vcpkg",
"configuration": "Debug",
"targets": [ "install", "°°°PACKAGE_NAME°°°" ]
},
{
"name": "MinSizeRel",
"configurePreset": "vcpkg",
"configuration": "MinSizeRel",
"targets": [ "install", "°°°PACKAGE_NAME°°°" ]
}
]
}