-
Notifications
You must be signed in to change notification settings - Fork 49
/
CMakePresets.json
95 lines (95 loc) · 2.12 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"version": 6,
"cmakeMinimumRequired": {
"major": 3,
"minor": 25,
"patch": 0
},
"configurePresets": [
{
"name": "base",
"hidden": true,
"generator": "Visual Studio 17 2022",
"architecture": {
"value": "win32",
"strategy": "set"
},
"toolset": {
"value": "host=x86",
"strategy": "set"
},
"environment": {
"NUGET_CLI_LANGUAGE": "en-us",
"VCPKG_ROOT": "C:/vcpkg",
"VCPKG_BINARY_SOURCES": "clear;nuget,github,readwrite;default,readwrite"
},
"binaryDir": "${sourceDir}/.build",
"toolchainFile": "$env{VCPKG_ROOT}/scripts/buildsystems/vcpkg.cmake",
"cacheVariables": {
"_DLL_VERSION": "devel",
"CMAKE_C_COMPILER": "cl",
"VCPKG_TARGET_TRIPLET": "x86-windows-static"
}
},
{
"name": "Release",
"inherits": "base",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Release"
}
},
{
"name": "RelWithDebInfo",
"inherits": "base",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "RelWithDebInfo"
}
},
{
"name": "Debug",
"inherits": "base",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug"
}
},
{
"name": "MinSizeRel",
"inherits": "base",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "MinSizeRel"
}
}
],
"buildPresets": [
{
"name": "Release",
"displayName": "Default",
"configurePreset": "Release",
"configuration": "Release"
},
{
"name": "RelWithDebInfo",
"displayName": "Default",
"configurePreset": "RelWithDebInfo",
"configuration": "RelWithDebInfo"
},
{
"name": "Debug",
"displayName": "Default",
"configurePreset": "Debug",
"configuration": "Debug"
},
{
"name": "MinSizeRel",
"displayName": "Default",
"configurePreset": "MinSizeRel",
"configuration": "MinSizeRel"
}
],
"vendor": {
"microsoft.com/VisualStudioSettings/CMake/1.0": {
"hostOS": "Windows",
"intelliSenseMode": "windows-msvc-x64"
}
}
}