forked from RawTherapee/RawTherapee
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCMakePresets.json
More file actions
177 lines (175 loc) · 5.74 KB
/
CMakePresets.json
File metadata and controls
177 lines (175 loc) · 5.74 KB
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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
{
"version": 3,
"cmakeMinimumRequired": {
"major": 3,
"minor": 21,
"patch": 0
},
"configurePresets": [
{
"name": "conf-common",
"description": "General settings that apply to all configurations",
"hidden": true,
"binaryDir": "${sourceDir}/build/${presetName}",
"installDir": "${sourceDir}/build/${presetName}"
},
{
"name": "conf-unixlike-common",
"description": "Unix-like OS settings for gcc and clang toolchains",
"hidden": true,
"inherits": "conf-common",
"generator": "Ninja",
"condition": {
"type": "anyOf",
"conditions": [
{
"type": "inList",
"string": "${hostSystemName}",
"list": ["Linux", "Darwin"]
},
{
"type": "matches",
"string": "$env{MSYSTEM}",
"regex": "MINGW64"
},
{
"type": "matches",
"string": "$env{MSYSTEM}",
"regex": "UCRT64"
}
]
}
},
{
"name": "unixlike-gcc-debug",
"displayName": "gcc Debug",
"description": "Target Unix-like OS with the gcc compiler, debug build type",
"inherits": "conf-unixlike-common",
"cacheVariables": {
"CMAKE_C_COMPILER": "gcc",
"CMAKE_CXX_COMPILER": "g++",
"CMAKE_BUILD_TYPE": "Debug"
}
},
{
"name": "unixlike-gcc-release",
"displayName": "gcc Release",
"description": "Target Unix-like OS with the gcc compiler, release build type",
"inherits": "conf-unixlike-common",
"cacheVariables": {
"CMAKE_C_COMPILER": "gcc",
"CMAKE_CXX_COMPILER": "g++",
"CMAKE_BUILD_TYPE": "RelWithDebInfo"
}
},
{
"name": "unixlike-clang-debug",
"displayName": "clang Debug",
"description": "Target Unix-like OS with the clang compiler, debug build type",
"inherits": "conf-unixlike-common",
"cacheVariables": {
"CMAKE_C_COMPILER": "clang",
"CMAKE_CXX_COMPILER": "clang++",
"CMAKE_BUILD_TYPE": "Debug"
}
},
{
"name": "unixlike-clang-release",
"displayName": "clang Release",
"description": "Target Unix-like OS with the clang compiler, release build type",
"inherits": "conf-unixlike-common",
"cacheVariables": {
"CMAKE_C_COMPILER": "clang",
"CMAKE_CXX_COMPILER": "clang++",
"CMAKE_BUILD_TYPE": "RelWithDebInfo"
}
},
{
"name": "cmake-pedantic",
"description": "Enables a minimal set of warnings and errors",
"hidden": true,
"warnings": {
"dev": true,
"deprecated": true,
"uninitialized": false,
"unusedCli": true,
"systemVars": false
},
"errors": {
"dev": true,
"deprecated": true
}
},
{
"name": "default_options",
"description": "Default configuration options. This should be inherited last to not override user options.",
"hidden": true,
"cacheVariables": {
"BUILD_SHARED": "OFF",
"ENABLE_TCMALLOC": "OFF",
"OPTION_OMP": "ON",
"WARNINGS_AS_ERRORS": "OFF",
"WITH_BENCHMARK": "OFF",
"WITH_JXL": "AUTO",
"WITH_LTO": "OFF",
"WITH_MYFILE_MMAP": "ON",
"WITH_SAN": "OFF",
"WITH_PROF": "OFF",
"WITH_SYSTEM_KLT": "OFF",
"WITH_SYSTEM_LIBRAW": "OFF",
"STRICT_MUTEX": "ON",
"TRACE_MYRWMUTEX": "OFF",
"AUTO_GDK_FLUSH": "OFF"
}
},
{
"name": "dev-mode",
"description": "Enable developer mode options",
"hidden": true,
"inherits": "cmake-pedantic",
"cacheVariables": {
"CACHE_NAME_SUFFIX": "5-dev",
"PROC_TARGET_NUMBER": "2"
}
},
{
"name": "strict-warnings",
"description": "Promote warnings to errors",
"hidden": true,
"inherits": "dev-mode",
"cacheVariables": {
"WARNINGS_AS_ERRORS": "ON"
}
},
{
"name": "dev",
"inherits": ["dev-mode", "default_options", "unixlike-gcc-release"],
"binaryDir": "${sourceDir}/build/dev",
"installDir": "${sourceDir}/build/dev"
},
{
"name": "dev-strict",
"inherits": ["strict-warnings", "dev"]
},
{
"name": "dev-debug",
"inherits": ["dev-mode", "unixlike-gcc-debug"],
"binaryDir": "${sourceDir}/build/debug",
"installDir": "${sourceDir}/build/debug"
}
],
"buildPresets": [
{
"name": "dev",
"configurePreset": "dev"
},
{
"name": "dev-strict",
"configurePreset": "dev-strict"
},
{
"name": "dev-debug",
"configurePreset": "dev-debug"
}
]
}