forked from y-scope/clp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoptions.cmake
More file actions
479 lines (417 loc) · 11.6 KB
/
Copy pathoptions.cmake
File metadata and controls
479 lines (417 loc) · 11.6 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
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
# Build Target Options
option(
CLP_BUILD_EXECUTABLES
"Build all executables."
ON
)
option(
CLP_BUILD_TESTING
"Build all tests."
ON
)
option(
CLP_BUILD_CLP_REGEX_UTILS
"Build clp::regex_utils."
ON
)
option(
CLP_BUILD_CLP_STRING_UTILS
"Build clp::string_utils."
ON
)
option(
CLP_BUILD_CLP_S_ARCHIVEREADER
"Build clp_s::archive_reader."
ON
)
option(
CLP_BUILD_CLP_S_ARCHIVEWRITER
"Build clp_s::archive_writer."
ON
)
option(
CLP_BUILD_CLP_S_CLP_DEPENDENCIES
"BUILD clp_s::clp_dependencies."
ON
)
option(
CLP_BUILD_CLP_S_IO
"Build clp_s::io."
ON
)
option(
CLP_BUILD_CLP_S_JSONCONSTRUCTOR
"Build clp_s::json_constructor."
ON
)
option(
CLP_BUILD_CLP_S_REDUCER_DEPENDENCIES
"Build clp_s::reducer_dependencies."
ON
)
option(
CLP_BUILD_CLP_S_SEARCH
"Build clp_s::search."
ON
)
option(
CLP_BUILD_CLP_S_SEARCH_AST
"Build clp_s::search::ast."
ON
)
option(
CLP_BUILD_CLP_S_SEARCH_KQL
"Build clp_s::search::kql."
ON
)
option(
CLP_BUILD_CLP_S_SEARCH_SQL
"Build clp_s::search::sql."
ON
)
option(
CLP_BUILD_CLP_S_TIMESTAMPPATTERN
"Build clp_s::timestamp_pattern."
ON
)
# Validates that the `CLP_BUILD_` options required by `TARGET_CLP_BUILD_OPTION` are `ON`.
#
# @param {string} TARGET_CLP_BUILD_OPTION
# @param {string[]} ARGN The required `CLP_BUILD_` options
function(validate_clp_dependencies_for_target TARGET_CLP_BUILD_OPTION)
if (NOT DEFINED TARGET_CLP_BUILD_OPTION OR TARGET_CLP_BUILD_OPTION STREQUAL "")
message(FATAL_ERROR "TARGET_CLP_BUILD_OPTION can't be unset or empty.")
endif()
foreach(DEPENDENCY IN LISTS ARGN)
if (NOT "${${DEPENDENCY}}")
message(FATAL_ERROR "${TARGET_CLP_BUILD_OPTION} requires ${DEPENDENCY}=ON")
endif()
endforeach()
endfunction()
# Sets the given `CLP_NEED_` flags as directory properties
#
# @param {string[]} ARGV The `CLP_NEED_` flags to set.
function(set_clp_need_flags)
foreach(NEEDS_FLAG IN LISTS ARGV)
set_property(DIRECTORY PROPERTY "${NEEDS_FLAG}" ON)
endforeach()
endfunction()
function(validate_clp_binaries_dependencies)
validate_clp_dependencies_for_target(CLP_BUILD_EXECUTABLES
CLP_BUILD_CLP_STRING_UTILS
CLP_BUILD_CLP_S_ARCHIVEREADER
CLP_BUILD_CLP_S_ARCHIVEWRITER
CLP_BUILD_CLP_S_CLP_DEPENDENCIES
CLP_BUILD_CLP_S_IO
CLP_BUILD_CLP_S_JSONCONSTRUCTOR
CLP_BUILD_CLP_S_REDUCER_DEPENDENCIES
CLP_BUILD_CLP_S_SEARCH
CLP_BUILD_CLP_S_SEARCH_AST
CLP_BUILD_CLP_S_SEARCH_KQL
)
endfunction()
function(set_clp_binaries_dependencies)
set_clp_need_flags(
CLP_NEED_ABSL
CLP_NEED_BOOST
CLP_NEED_CURL
CLP_NEED_DATE
CLP_NEED_FMT
CLP_NEED_LIBARCHIVE
CLP_NEED_LOG_SURGEON
CLP_NEED_MARIADB
CLP_NEED_MONGOCXX
CLP_NEED_MSGPACKCXX
CLP_NEED_NLOHMANN_JSON
CLP_NEED_OPENSSL
CLP_NEED_SIMDJSON
CLP_NEED_SPDLOG
CLP_NEED_SQLITE
CLP_NEED_YAMLCPP
CLP_NEED_YSTDLIB
CLP_NEED_ZSTD
)
endfunction()
function(validate_clp_tests_dependencies)
validate_clp_dependencies_for_target(CLP_BUILD_TESTING
CLP_BUILD_CLP_REGEX_UTILS
CLP_BUILD_CLP_STRING_UTILS
CLP_BUILD_CLP_S_SEARCH_AST
CLP_BUILD_CLP_S_SEARCH_KQL
CLP_BUILD_CLP_S_SEARCH_SQL
CLP_BUILD_CLP_S_TIMESTAMPPATTERN
)
endfunction()
function(set_clp_tests_dependencies)
set_clp_need_flags(
CLP_NEED_ABSL
CLP_NEED_BOOST
CLP_NEED_CATCH2
CLP_NEED_DATE
CLP_NEED_FMT
CLP_NEED_LIBARCHIVE
CLP_NEED_LIBLZMA
CLP_NEED_LOG_SURGEON
CLP_NEED_MARIADB
CLP_NEED_MONGOCXX
CLP_NEED_NLOHMANN_JSON
CLP_NEED_OPENSSL
CLP_NEED_SIMDJSON
CLP_NEED_SPDLOG
CLP_NEED_SQLITE
CLP_NEED_YAMLCPP
CLP_NEED_YSTDLIB
CLP_NEED_ZSTD
)
endfunction()
function(validate_clp_regex_utils_dependencies)
validate_clp_dependencies_for_target(CLP_BUILD_CLP_REGEX_UTILS
CLP_BUILD_CLP_STRING_UTILS
)
endfunction()
function(set_clp_regex_utils_dependencies)
set_property(DIRECTORY PROPERTY CLP_NEED_YSTDLIB TRUE)
endfunction()
function(validate_clp_s_archivereader_dependencies)
validate_clp_dependencies_for_target(CLP_BUILD_CLP_S_ARCHIVEREADER
CLP_BUILD_CLP_STRING_UTILS
CLP_BUILD_CLP_S_CLP_DEPENDENCIES
CLP_BUILD_CLP_S_IO
CLP_BUILD_CLP_S_TIMESTAMPPATTERN
)
endfunction()
function(set_clp_s_archivereader_dependencies)
set_clp_need_flags(
CLP_NEED_ABSL
CLP_NEED_BOOST
CLP_NEED_CURL
CLP_NEED_FMT
CLP_NEED_MSGPACKCXX
CLP_NEED_NLOHMANN_JSON
CLP_NEED_SPDLOG
)
endfunction()
function(validate_clp_s_archivewriter_dependencies)
validate_clp_dependencies_for_target(CLP_BUILD_CLP_S_ARCHIVEWRITER
CLP_BUILD_CLP_S_CLP_DEPENDENCIES
CLP_BUILD_CLP_S_IO
CLP_BUILD_CLP_S_TIMESTAMPPATTERN
)
endfunction()
function(set_clp_s_archivewriter_dependencies)
set_clp_need_flags(
CLP_NEED_ABSL
CLP_NEED_BOOST
CLP_NEED_CURL
CLP_NEED_FMT
CLP_NEED_MSGPACKCXX
CLP_NEED_NLOHMANN_JSON
CLP_NEED_SIMDJSON
CLP_NEED_SPDLOG
)
endfunction()
function(validate_clp_s_clp_dependencies_dependencies)
validate_clp_dependencies_for_target(CLP_BUILD_CLP_S_CLP_DEPENDENCIES
CLP_BUILD_CLP_STRING_UTILS
)
endfunction()
function(set_clp_s_clp_dependencies_dependencies)
set_clp_need_flags(
CLP_NEED_BOOST
CLP_NEED_CURL
CLP_NEED_FMT
CLP_NEED_LOG_SURGEON
CLP_NEED_MSGPACKCXX
CLP_NEED_NLOHMANN_JSON
CLP_NEED_OPENSSL
CLP_NEED_SPDLOG
CLP_NEED_YSTDLIB
CLP_NEED_ZSTD
)
endfunction()
function(validate_clp_s_io_dependencies)
validate_clp_dependencies_for_target(CLP_BUILD_CLP_S_IO
CLP_BUILD_CLP_S_CLP_DEPENDENCIES
)
endfunction()
function(set_clp_s_io_dependencies)
set_clp_need_flags(
CLP_NEED_BOOST
CLP_NEED_FMT
CLP_NEED_SPDLOG
CLP_NEED_ZSTD
)
endfunction()
function(validate_clp_s_json_constructor_dependencies)
validate_clp_dependencies_for_target(CLP_BUILD_CLP_S_JSONCONSTRUCTOR
CLP_BUILD_CLP_S_ARCHIVEREADER
)
endfunction()
function(set_clp_s_json_constructor_dependencies)
set_clp_need_flags(
CLP_NEED_FMT
CLP_NEED_MONGOCXX
CLP_NEED_SPDLOG
)
endfunction()
function(validate_clp_s_reducer_dependencies_dependencies)
validate_clp_dependencies_for_target(CLP_BUILD_CLP_S_REDUCER_DEPENDENCIES
CLP_BUILD_CLP_S_CLP_DEPENDENCIES
)
endfunction()
function(set_clp_s_reducer_dependencies_dependencies)
set_clp_need_flags(
CLP_NEED_NLOHMANN_JSON
)
endfunction()
function(validate_clp_s_search_dependencies)
validate_clp_dependencies_for_target(CLP_BUILD_CLP_S_SEARCH
CLP_BUILD_CLP_STRING_UTILS
CLP_BUILD_CLP_S_ARCHIVEREADER
CLP_BUILD_CLP_S_CLP_DEPENDENCIES
CLP_BUILD_CLP_S_SEARCH_AST
)
endfunction()
function(set_clp_s_search_dependencies)
set_clp_need_flags(
CLP_NEED_ABSL
CLP_NEED_LOG_SURGEON
CLP_NEED_SIMDJSON
CLP_NEED_SPDLOG
)
endfunction()
function(validate_clp_s_search_ast_dependencies)
validate_clp_dependencies_for_target(CLP_BUILD_CLP_S_SEARCH_AST
CLP_BUILD_CLP_S_TIMESTAMPPATTERN
)
endfunction()
function(set_clp_s_search_ast_dependencies)
set_clp_need_flags(
CLP_NEED_SIMDJSON
)
endfunction()
function(validate_clp_s_search_kql_dependencies)
validate_clp_dependencies_for_target(CLP_BUILD_CLP_S_SEARCH_KQL
CLP_BUILD_CLP_STRING_UTILS
CLP_BUILD_CLP_S_SEARCH_AST
)
endfunction()
function(set_clp_s_search_kql_dependencies)
set_clp_need_flags(
CLP_NEED_ANTLR
CLP_NEED_SPDLOG
)
endfunction()
function(validate_clp_s_search_sql_dependencies)
validate_clp_dependencies_for_target(CLP_BUILD_CLP_S_SEARCH_SQL
CLP_BUILD_CLP_S_SEARCH_AST
)
endfunction()
function(set_clp_s_search_sql_dependencies)
set_clp_need_flags(
CLP_NEED_ANTLR
CLP_NEED_SPDLOG
)
endfunction()
function(validate_clp_s_timestamppattern_dependencies)
validate_clp_dependencies_for_target(CLP_BUILD_CLP_S_TIMESTAMPPATTERN
CLP_BUILD_CLP_STRING_UTILS
)
endfunction()
function(set_clp_s_timestamppattern_dependencies)
set_clp_need_flags(
CLP_NEED_DATE
CLP_NEED_SPDLOG
)
endfunction()
# Validates that for each target whose `CLP_BUILD_` option is `ON`, the `CLP_BUILD_` options for
# the target's dependencies are also `ON`; Sets the required `CLP_NEED_` flags for any target that
# will be built.
function(validate_and_setup_all_clp_dependency_flags)
if (CLP_BUILD_EXECUTABLES)
validate_clp_binaries_dependencies()
set_clp_binaries_dependencies()
endif()
if (CLP_BUILD_TESTING)
validate_clp_tests_dependencies()
set_clp_tests_dependencies()
endif()
if (CLP_BUILD_CLP_REGEX_UTILS)
validate_clp_regex_utils_dependencies()
set_clp_regex_utils_dependencies()
endif()
# clp::string_utils has no dependencies
if (CLP_BUILD_CLP_S_ARCHIVEREADER)
validate_clp_s_archivereader_dependencies()
set_clp_s_archivereader_dependencies()
endif()
if (CLP_BUILD_CLP_S_ARCHIVEWRITER)
validate_clp_s_archivewriter_dependencies()
set_clp_s_archivewriter_dependencies()
endif()
if (CLP_BUILD_CLP_S_CLP_DEPENDENCIES)
validate_clp_s_clp_dependencies_dependencies()
set_clp_s_clp_dependencies_dependencies()
endif()
if (CLP_BUILD_CLP_S_IO)
validate_clp_s_io_dependencies()
set_clp_s_io_dependencies()
endif()
if (CLP_BUILD_CLP_S_JSONCONSTRUCTOR)
validate_clp_s_json_constructor_dependencies()
set_clp_s_json_constructor_dependencies()
endif()
if (CLP_BUILD_CLP_S_REDUCER_DEPENDENCIES)
validate_clp_s_reducer_dependencies_dependencies()
set_clp_s_reducer_dependencies_dependencies()
endif()
if (CLP_BUILD_CLP_S_SEARCH)
validate_clp_s_search_dependencies()
set_clp_s_search_dependencies()
endif()
if (CLP_BUILD_CLP_S_SEARCH_AST)
validate_clp_s_search_ast_dependencies()
set_clp_s_search_ast_dependencies()
endif()
if (CLP_BUILD_CLP_S_SEARCH_KQL)
validate_clp_s_search_kql_dependencies()
set_clp_s_search_kql_dependencies()
endif()
if (CLP_BUILD_CLP_S_SEARCH_SQL)
validate_clp_s_search_sql_dependencies()
set_clp_s_search_sql_dependencies()
endif()
if (CLP_BUILD_CLP_S_TIMESTAMPPATTERN)
validate_clp_s_timestamppattern_dependencies()
set_clp_s_timestamppattern_dependencies()
endif()
endfunction()
function (convert_clp_dependency_properties_to_variables)
list(APPEND CLP_NEED_FLAGS
CLP_NEED_ABSL
CLP_NEED_ANTLR
CLP_NEED_BOOST
CLP_NEED_CATCH2
CLP_NEED_CURL
CLP_NEED_DATE
CLP_NEED_FMT
CLP_NEED_LIBARCHIVE
CLP_NEED_LIBLZMA
CLP_NEED_LOG_SURGEON
CLP_NEED_MARIADB
CLP_NEED_MONGOCXX
CLP_NEED_MSGPACKCXX
CLP_NEED_NLOHMANN_JSON
CLP_NEED_OPENSSL
CLP_NEED_SIMDJSON
CLP_NEED_SPDLOG
CLP_NEED_SQLITE
CLP_NEED_YAMLCPP
CLP_NEED_YSTDLIB
CLP_NEED_ZSTD
)
foreach(FLAG IN LISTS CLP_NEED_FLAGS)
get_property(VALUE DIRECTORY PROPERTY "${FLAG}")
set("${FLAG}" "${VALUE}" PARENT_SCOPE)
endforeach()
endfunction()