-
Notifications
You must be signed in to change notification settings - Fork 13
/
CMakePresets.json
121 lines (121 loc) · 3.17 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"version": 2,
"configurePresets": [
{
"name": "base64",
"displayName": "Windows x86-64 base",
"description": "Build x86-64 Release, VS2019",
"hidden": true,
"generator": "Visual Studio 16 2019",
"architecture": {
"value": "x64",
"strategy": "set"
},
"cacheVariables": {
"BUILD_SHARED_LIBS": "YES",
"BUILD_MSVC_RUNTIME_STATIC": "YES"
}
},
{
"name": "base32",
"displayName": "Windows x86 base",
"description": "Build x86 Release, VS2019",
"hidden": true,
"generator": "Visual Studio 16 2019",
"architecture": {
"value": "Win32",
"strategy": "set"
},
"cacheVariables": {
"BUILD_SHARED_LIBS": "YES",
"BUILD_MSVC_RUNTIME_STATIC": "YES"
}
},
{
"name": "Debug32AllStatic",
"displayName": "Windows x86 Debug All",
"description": "Build x86 Debug, VS2019, including test and samples",
"inherits": "base32",
"binaryDir": "${sourceDir}/Debug",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug",
"BUILD_TEST": "YES",
"BUILD_SAMPLES": "YES",
"BUILD_SHARED_LIBS": "NO"
}
},
{
"name": "Release32AllStatic",
"displayName": "Windows x86 Release All",
"description": "Build x86 Release, VS2019, including test and samples",
"inherits": "base32",
"binaryDir": "${sourceDir}/Release",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Release",
"BUILD_TEST": "YES",
"BUILD_SAMPLES": "YES",
"BUILD_SHARED_LIBS": "NO"
}
},
{
"name": "Release32Static",
"displayName": "Windows x86 Release",
"description": "Build x86 Release, VS2019",
"inherits": "base32",
"binaryDir": "${sourceDir}/Release",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Release",
"BUILD_SHARED_LIBS": "NO"
}
},
{
"name": "Release64",
"displayName": "Windows x86-64 Release",
"description": "Build x86-64 Release, VS2019",
"inherits": "base64",
"binaryDir": "${sourceDir}/Release",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Release"
}
},
{
"name": "Debug64All",
"displayName": "Windows x86-64 Debug All",
"description": "Build x86-64 Debug, VS2019, including test and samples",
"inherits": "base64",
"binaryDir": "${sourceDir}/Debug",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug",
"BUILD_TEST": "YES",
"BUILD_SAMPLES": "YES"
}
}
],
"buildPresets": [
{
"name": "Debug32AllStatic",
"configurePreset": "Debug32AllStatic",
"configuration": "Debug"
},
{
"name": "Release32AllStatic",
"configurePreset": "Release32AllStatic",
"configuration": "Release"
},
{
"name": "Release32Static",
"configurePreset": "Release32Static",
"configuration": "Release"
},
{
"name": "Release64",
"configurePreset": "Release64",
"configuration": "Release"
},
{
"name": "Debug64All",
"configurePreset": "Debug64All",
"configuration": "Debug"
}
]
}