-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakePresets.json
72 lines (72 loc) · 1.95 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"version": 3,
"cmakeMinimumRequired":
{
"major": 3,
"minor": 21,
"patch": 0
},
"configurePresets":
[
{
"name": "default",
"displayName": "Default configuration | release",
"description": "Default configuration with all the options set to their default values, release build type",
"binaryDir": "${sourceDir}/build/${presetName}",
"installDir": "${sourceDir}/install/${presetName}",
"generator": "Ninja",
"cacheVariables":
{
"CMAKE_BUILD_TYPE":
{
"type": "STRING",
"value": "Release"
}
}
},
{
"name": "vcpkg-default-triplet",
"inherits": "default",
"displayName": "vcpkg | default triplet",
"cacheVariables":
{
"CMAKE_TOOLCHAIN_FILE":
{
"type": "FILEPATH",
"value": "$env{VCPKG_ROOT}/scripts/buildsystems/vcpkg.cmake"
}
}
},
{
"name": "vcpkg-windows",
"inherits": "vcpkg-default-triplet",
"displayName": "vcpkg | Windows",
"cacheVariables":
{
"VCPKG_TARGET_TRIPLET":
{
"type": "STRING",
"value": "x64-windows-static"
}
}
}
],
"buildPresets":
[
{
"name": "default",
"configurePreset": "default",
"targets": "install"
},
{
"name": "vcpkg-default-triplet",
"configurePreset": "vcpkg-default-triplet",
"targets": "install"
},
{
"name": "vcpkg-windows",
"configurePreset": "vcpkg-windows",
"targets": "install"
}
]
}