forked from libical/libical
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCMakeLists.txt
More file actions
1109 lines (1042 loc) · 36.9 KB
/
CMakeLists.txt
File metadata and controls
1109 lines (1042 loc) · 36.9 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
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# This is the top-level CMakeLists.txt file for the libical project.
#
# SPDX-FileCopyrightText: Allen Winter <winter@kde.org>
# SPDX-License-Identifier: LGPL-2.1-only OR MPL-2.0
#
# Pass the following variables to cmake to control the build:
# (See docs/UsingLibical.md for more information)
#
# -DLIBICAL_CXX_BINDINGS=[true|false]
# Build the C++ bindings.
# Default=true
#
# -DLIBICAL_JAVA_BINDINGS=[true|false]
# Build the Java bindings.
# Default=true
#
# -DLIBICAL_ENABLE_BUILTIN_TZDATA=[true|false]
# Set to build using our own timezone data.
# Default=false (use the system timezone data on non-Windows systems)
# ALWAYS true on Windows systems
#
# -DLIBICAL_STATIC=[true|false]
# Build static versions of the libraries.
# Not available for GObject Introspection and Vala "vapi"
# Default=false (build shared libraries)
#
# -DLIBICAL_GOBJECT_INTROSPECTION=[true|false]
# Set to build GObject introspection "typelib" files
# Requires GObject Introspection development package (version MIN_GOBJECT_INTROSPECTION)
# Default=false (do not generate the introspection files)
#
# -DLIBICAL_BUILD_DOCS=[true|false]
# Configure for the API documentation and User Manual. The 'docs' target will not be available.
# Default=true
#
# -DLIBICAL_GLIB_VAPI=[true|false]
# Set to build Vala "vapi" files
# Requires Vala package
# Default=false (build the libical-glib interface)
#
# -DLIBICAL_GLIB=[true|false]
# Set to build libical-glib (GObject) interface
# Requires glib 2.0 development package (version MIN_GLIB).
# Requires libxml2.0 development package (version MIN_LIBXML).
# Default=true (build the libical-glib interface)
#
# -DLIBICAL_GLIB_BUILD_DOCS=[true|false]
# Set to build libical-glib developer documentation
# Requires gi-docgen, LIBICAL_GOBJECT_INTROSPECTION and LIBICAL_BUILD_DOCS options to be true.
# Default=true (build libical-glib developer documentation)
#
# -DLIBICAL_GLIB_CHECK_API_FILES=[true|false]
# Set to check whether API files for the libical-glib contain all symbols exported
# in the corresponding header files; requires ICAL_GLIB to be set to True
# Default=false (always true if LIBICAL_DEVMODE is on)
#
# -DLIBICAL_ENABLE_MSVC_32BIT_TIME_T=[true|false]
# Set to build using a 32bit time_t (ignored unless building with MSVC on Windows)
# Default=false (use the default size of time_t)
#
# -DLIBICAL_ENABLE_64BIT_ICALTIME_T=[true|false]
# Redirect icaltime_t (and related functions) to a 64-bit version of time_t rather than the
# C standard library time_t. Intended for use on 32-bit systems which have a 64-bit time_t
# (for example using `__time64_t`).
# Default=false (i.e. use plain time_t)
#
# -DLIBICAL_BUILD_TESTING=[true|false]
# Set to build the test suite
# Default=false (always true if LIBICAL_DEVMODE is on)
#
# -DLIBICAL_BUILD_EXAMPLES=[true|false]
# Set to build the examples
# Default=true
#
# # # DO NOT USE IF YOU ARE AN END-USER. FOR THE DEVELOPERS ONLY!! # # #
## Special CMake Options for Developers
#
# -DLIBICAL_DEVMODE=[true|false]
# Configure the build for a developer setup. Enables some features that are not geared towards end-users.
# Developer mode builds the code in Debug mode (use CMAKE_BUILD_TYPE to override).
# Forces the test suite to be built.
# Default=false
#
# -DLIBICAL_BUILD_TESTING_BIGFUZZ=[true|false]
# Set to build the big fuzzer tests
# Default=false
#
# -DLIBICAL_DEVMODE_ABI_DUMPER=[true|false]
# Build for the abi-dumper (requires gcc)
# Default=false
#
# -DLIBICAL_DEVMODE_MEMORY_CONSISTENCY=[true|false]
# Build using special memory consistency versions of malloc(), realloc() and free()
# that perform some extra verifications. Most notably they ensure that memory allocated
# with icalmemory_new_buffer() is freed using icalmemory_free() rather than using free()
# directly and vice versa. Failing to do so would cause the test to fail with assertions
# or access violations.
# Default=false
#
# -DLIBICAL_DEVMODE_ADDRESS_SANITIZER=[true|false]
# Build with the address sanitizer (requires gcc or clang)
# Default=false
#
# -DLIBICAL_DEVMODE_LEAK_SANITIZER=[true|false]
# Build with the memory leak sanitizer (requires gcc or clang)
# Default=false
#
# -DLIBICAL_DEVMODE_MEMORY_SANITIZER=[true|false]
# Build with the memory sanitizer (requires clang)
# Default=false
#
# -DLIBICAL_DEVMODE_THREAD_SANITIZER=[true|false]
# Build with the thread sanitizer (requires gcc or clang)
# Default=false
#
# -DLIBICAL_DEVMODE_UNDEFINED_SANITIZER=[true|false]
# Build with the undefined sanitizer (requires gcc or clang)
# Default=false
#
# -DLIBICAL_DEVMODE_SYNCMODE_THREADLOCAL=[true|false]
# If set to true, global variables are marked as thread-local. This allows accessing libical
# from multiple threads without the need for synchronization. However, any global settings
# must be applied per thread. Note that in this mode, any global variables and cached data are
# allocated per thread, including the cache for the built-in timezone data. This can lead to a
# significant overhead in memory usage and initialization time. It's therefore recommended to limit
# the number of threads accessing the library when using this mode. Also note that the additional
# allocations might be detected as memory leaks by memory checkers.
# If set to false, the default synchronization mechanism is applied. That is, if the pthreads library
# is available, it will be used; otherwise, no synchronization is applied.
# Default: false.
cmake_minimum_required(VERSION 3.20.0)
project(
libical
VERSION 3.99.99
DESCRIPTION "An implementation of basic iCAL protocols"
HOMEPAGE_URL "https://libical.github.io/libical/"
LANGUAGES
C #CXX is optional for the bindings
)
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake/modules")
#Include CMake capabilities
include(LibIcalMacrosInternal)
include(FeatureSummary)
if(NOT PROJECT_SOURCE_DIR STREQUAL PROJECT_BINARY_DIR)
# Git auto-ignore out-of-source build directory
file(GENERATE OUTPUT .gitignore CONTENT "*")
endif()
# Enable the test harness
enable_testing()
if(WINCE)
find_package(Wcecompat REQUIRED)
include_directories(${WCECOMPAT_INCLUDE_DIR})
set(
CMAKE_REQUIRED_INCLUDES
${CMAKE_REQUIRED_INCLUDES}
${WCECOMPAT_INCLUDE_DIR}
)
set(
CMAKE_REQUIRED_LIBRARIES
${CMAKE_REQUIRED_LIBRARIES}
${WCECOMPAT_LIBRARIES}
)
endif()
set(LIBICAL_LIB_MAJOR_SOVERSION "4")
set(LIBICAL_LIB_SOVERSION_STRING "${LIBICAL_LIB_MAJOR_SOVERSION}.0")
set(PROJECT_VERSION "4.0")
# library build types
set(LIBRARY_TYPE SHARED)
# Print message and error exit for these options that are no longer supported
libical_removed_option(SHARED_ONLY)
libical_removed_option(ICAL_ALLOW_EMPTY_PROPERTIES)
libical_removed_option(ICAL_ERRORS_ARE_FATAL)
########################################################
libical_option(LIBICAL_DEVMODE "Developer mode" False)
if(LIBICAL_DEVMODE)
# generate compile_commands.json
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
endif()
# Set a default build type if none was specified
set(default_build_type "Release")
if(EXISTS "${CMAKE_SOURCE_DIR}/.git" OR LIBICAL_DEVMODE)
set(default_build_type "Debug")
endif()
if(NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES)
message(STATUS "Setting build type to ${default_build_type} as none was specified.")
set(CMAKE_BUILD_TYPE "${default_build_type}" CACHE STRING "Choose the type of build." FORCE)
# Set the possible values of build type for cmake-gui
set_property(
CACHE
CMAKE_BUILD_TYPE
PROPERTY
STRINGS
"Debug"
"Release"
"MinSizeRel"
"RelWithDebInfo"
)
endif()
string(TOUPPER "${CMAKE_BUILD_TYPE}" UPPERCASE_CMAKE_BUILD_TYPE)
if(UPPERCASE_CMAKE_BUILD_TYPE MATCHES "^REL" AND LIBICAL_DEVMODE)
message(
FATAL_ERROR
"Cannot combine LIBICAL_DEVMODE with release builds. Either build in debug mode or disable LIBICAL_DEVMODE."
)
endif()
libical_deprecated_option(STATIC_ONLY LIBICAL_STATIC "Build static versions of the libraries." False)
if(LIBICAL_STATIC)
set(LIBRARY_TYPE STATIC)
endif()
add_feature_info(
"Build type"
${LIBICAL_STATIC}
"build static libraries"
)
if(LIBICAL_STATIC)
add_definitions(
-DLIBICAL_ICAL_STATIC_DEFINE
-DLIBICAL_ICALSS_STATIC_DEFINE
-DLIBICAL_VCAL_STATIC_DEFINE
-DLIBICAL_VCARD_STATIC_DEFINE
)
endif()
libical_deprecated_option(WITH_CXX_BINDINGS LIBICAL_CXX_BINDINGS "Build the C++ bindings." True)
if(LIBICAL_CXX_BINDINGS)
enable_language(CXX)
set(CMAKE_CXX_STANDARD 11)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
if(CMAKE_CXX_COMPILER)
add_definitions(-DLIBICAL_CXX_BINDINGS)
else()
message(
NOTICE
"Building the C++ bindings is not possible since a C++ compiler could not be found. "
"Turning-off C++ bindings."
)
set(LIBICAL_CXX_BINDINGS False)
endif()
endif()
add_feature_info(
"Option LIBICAL_CXX_BINDINGS"
LIBICAL_CXX_BINDINGS
"build the C++ bindings. Requires a C++ compiler"
)
libical_option(LIBICAL_JAVA_BINDINGS "Build the Java bindings. Requires java compiler" True)
if(LIBICAL_JAVA_BINDINGS)
enable_language(Java)
if(NOT CMAKE_CXX_COMPILER)
message(
FATAL_ERROR
"Building the Java bindings is not possible since a C++ compiler could not be found. "
"Please install a C++ compiler and try again. "
"Otherwise, disable Java binding generation using the -DLIBICAL_JAVA_BINDINGS=False CMake option."
)
endif()
find_package(Java)
find_package(JNI)
if(NOT JNI_FOUND)
message(
FATAL_ERROR
"Building the Java bindings is not possible since the JNI headers could not be found. "
"You might try setting the JAVA_HOME environment variable to help CMake locate java. "
"Otherwise, disable Java binding generation using the -DLIBICAL_JAVA_BINDINGS=False CMake option."
)
endif()
if(NOT Java_FOUND)
message(
FATAL_ERROR
"Building the Java bindings is not possible since a java compiler could not be found. "
"You might try setting the JAVA_HOME environment variable to help CMake locate java. "
"Otherwise, disable Java binding generation using the -DLIBICAL_JAVA_BINDINGS=False CMake option."
)
set(LIBICAL_JAVA_BINDINGS False)
endif()
if(LIBICAL_STATIC)
message(
FATAL_ERROR
"You are attempting to build with Java bindings enabled, "
"however that option is not supported when building static libraries. "
"Please disable the static build option to cmake (-DLIBICAL_STATIC=False) "
"if you really want to build with Java bindings. Alternatively, you can disable "
"the Java bindings (by passing -DLIBICAL_JAVA_BINDINGS=False to cmake)."
)
endif()
endif()
add_feature_info(
"Option LIBICAL_JAVA_BINDINGS"
LIBICAL_JAVA_BINDINGS
"build the Java bindings. Requires a java compiler"
)
# must have Perl to create the derived stuff
find_package(Perl REQUIRED)
set_package_properties(
Perl
PROPERTIES
TYPE
REQUIRED
PURPOSE
"Required by the libical build system."
)
# Ensure finding 64bit libs when using 64-bit compilers
if(CMAKE_CL_64)
set_property(
GLOBAL
PROPERTY
FIND_LIBRARY_USE_LIB64_PATHS
True
)
endif()
# libicu is highly recommended for RSCALE support
# libicu can be found at http://www.icu-project.org
# RSCALE info at http://tools.ietf.org/html/rfc7529
if(DEFINED ENV{ICU_BASE}) # keep backwards compatibility for ICU_BASE
set(ICU_ROOT $ENV{ICU_BASE})
endif()
if(NOT DEFINED ENV{ICU_ROOT} AND APPLE)
#Use the homebrew version. MacOS provided ICU doesn't provide development files
set(ICU_ROOT "/usr/local/opt/icu4c")
endif()
find_package(
ICU
COMPONENTS
i18n
uc
data
)
set_package_properties(
ICU
PROPERTIES
TYPE
RECOMMENDED
PURPOSE
"For RSCALE (RFC7529) support"
)
add_feature_info(
"RSCALE support (RFC7529)"
ICU_FOUND
"build in RSCALE support"
)
if(ICU_FOUND)
set(HAVE_LIBICU 1)
if(ICU_VERSION VERSION_GREATER 50)
set(HAVE_ICU_DANGI TRUE)
else()
set(HAVE_ICU_DANGI FALSE)
endif()
if(ICU_GENCCODE_EXECUTABLE)
get_filename_component(ICU_EXEC ${ICU_GENCCODE_EXECUTABLE} DIRECTORY)
elseif(ICU_UCONV_EXECUTABLE)
get_filename_component(ICU_EXEC ${ICU_UCONV_EXECUTABLE} DIRECTORY)
elseif(ICU_ICUINFO_EXECUTABLE)
get_filename_component(ICU_EXEC ${ICU_ICUINFO_EXECUTABLE} DIRECTORY)
elseif(ICU_ICU-CONFIG_EXECUTABLE)
get_filename_component(ICU_EXEC ${ICU_ICU-CONFIG_EXECUTABLE} DIRECTORY)
elseif(ICU_MAKECONV_EXECUTABLE)
get_filename_component(ICU_EXEC ${ICU_MAKECONV_EXECUTABLE} DIRECTORY)
else()
message(FATAL_ERROR "Unable to locate the ICU runtime path. Is your ICU installation broken?")
endif()
set(ICU_BINARY_DIR ${ICU_EXEC} CACHE STRING "Runtime binaries directory for the ICU library")
endif()
# compile in Berkeley DB support
if(DEFINED BerkeleyDB_ROOT_DIR) #to make --warn-uninitialized happy
if(NOT "$ENV{BerkeleyDB_ROOT_DIR}")
if(APPLE)
#Use the homebrew version. Xcode's version doesn't work for us.
set(BerkeleyDB_ROOT_DIR "/usr/local/opt/berkeley-db")
endif()
endif()
endif()
set(BerkeleyDB_FIND_QUIETLY True)
find_package(BerkeleyDB)
set_package_properties(
BerkeleyDB
PROPERTIES
TYPE
OPTIONAL
PURPOSE
"For Berkeley DB storage support"
)
add_feature_info(
"Berkeley DB storage support"
BerkeleyDB_FOUND
"build in support for Berkeley DB storage"
)
set(BDB_FOUND False)
if(BerkeleyDB_FOUND)
set(HAVE_BDB True)
add_definitions(-DDB_DBM_HSEARCH=0) #set to 1 if hsearch support is needed
#for compatibility to our old FindBDB
set(BDB_FOUND True)
set(BDB_INCLUDE_DIR ${BerkeleyDB_INCLUDE_DIRS})
set(BDB_LIBRARY ${BerkeleyDB_LIBRARIES})
endif()
# C99 compliant compiler is required
set(CMAKE_C_STANDARD 99)
set(CMAKE_C_STANDARD_REQUIRED ON)
# MSVC specific definitions
if(WIN32)
if(MSVC)
add_definitions(
-D_CRT_SECURE_NO_DEPRECATE
-D_CRT_NONSTDC_NO_DEPRECATE
-DYY_NO_UNISTD_H
)
# From https://learn.microsoft.com/en-us/cpp/c-runtime-library/reference/time-time32-time64?view=msvc-170
# If you need to force the compiler to interpret time_t as the old 32-bit time_t, you can define _USE_32BIT_TIME_T.
# We don't recommend _USE_32BIT_TIME_T, because your application may fail after January 18, 2038;
# the use of this macro isn't allowed on 64-bit platforms.
libical_deprecated_option(
USE_32BIT_TIME_T
LIBICAL_ENABLE_MSVC_32BIT_TIME_T
"Build using the MSVC 32bit time_t (ignored unless building with MSVC on Windows)."
False
)
if(LIBICAL_ENABLE_MSVC_32BIT_TIME_T)
add_definitions(-D_USE_32BIT_TIME_T)
endif()
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} /W3")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /W3")
if(LIBICAL_DEVMODE)
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} /WX")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /WX")
endif()
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} /wd4211") #allow redefine extern as static
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /wd4290") #C++ exception specification ignored
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} /wd4068") #unknown pragma
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} /wd4028") #formal parameter differs
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /wd4068") #unknown pragma
endif()
add_definitions(
-DBIG_ENDIAN=0
-DLITTLE_ENDIAN=1
-DBYTE_ORDER=BIG_ENDIAN
)
endif()
# define icaltime_t
libical_option(
LIBICAL_ENABLE_64BIT_ICALTIME_T
"Redirect icaltime_t and related functions to a 64-bit version of time_t rather than to the \
C standard library time_t. Intended for use on 32-bit systems which have a 64-bit time_t available. \
May not be implemented on all platforms yet."
False
)
if(LIBICAL_ENABLE_64BIT_ICALTIME_T)
if(SIZEOF___TIME64_T)
set(ICAL_ICALTIME_T_TYPE "__time64_t")
else()
message(
FATAL_ERROR
"Option LIBICAL_ENABLE_64BIT_ICALTIME_T is not supported for this compiler or architecture since \
the __time64_t type is not available."
)
endif()
else()
if(SIZEOF_TIME_T EQUAL 4)
message(
NOTICE
"The 32-bit time_t type has been detected. \
Consider reconfiguring with -DLIBICAL_ENABLE_64BIT_ICALTIME_T=True to enable 64-bit time_t types."
)
endif()
set(ICAL_ICALTIME_T_TYPE "time_t")
endif()
# Use GNUInstallDirs
include(GNUInstallDirs)
set(BIN_INSTALL_DIR ${CMAKE_INSTALL_BINDIR} CACHE STRING "User executables directory name" FORCE)
set(LIB_INSTALL_DIR ${CMAKE_INSTALL_LIBDIR} CACHE STRING "Library directory name" FORCE)
set(INCLUDE_INSTALL_DIR ${CMAKE_INSTALL_INCLUDEDIR} CACHE STRING "Include directory name" FORCE)
set(SHARE_INSTALL_DIR ${CMAKE_INSTALL_DATAROOTDIR} CACHE STRING "Share directory name")
# set the output paths
set(EXECUTABLE_OUTPUT_PATH ${PROJECT_BINARY_DIR}/bin)
if(WIN32)
set(LIBRARY_OUTPUT_PATH ${EXECUTABLE_OUTPUT_PATH})
set(LIB_INSTALL_DIR lib)
set(BIN_INSTALL_DIR bin)
else()
set(LIBRARY_OUTPUT_PATH ${PROJECT_BINARY_DIR}/lib)
endif()
if(WIN32 OR WINCE)
set(DEF_USE_BUILTIN_TZDATA True)
else()
set(DEF_USE_BUILTIN_TZDATA False)
endif()
libical_deprecated_option(
USE_BUILTIN_TZDATA
LIBICAL_ENABLE_BUILTIN_TZDATA
"(Careful) Build using libical's built-in timezone data, else use the system timezone data on non-Windows systems. \
ALWAYS true on Windows. Non-Windows users should know what they're doing if they choose not to use system provided \
timezone data. The libical project does not guarantee that the built-in timezone data is up-to-date."
${DEF_USE_BUILTIN_TZDATA}
)
mark_as_advanced(LIBICAL_ENABLE_BUILTIN_TZDATA)
if(LIBICAL_ENABLE_BUILTIN_TZDATA)
set(USE_BUILTIN_TZDATA 1)
else()
set(USE_BUILTIN_TZDATA 0)
endif()
if(WIN32 OR WINCE)
#Always use builtin tzdata on Windows systems.
if(NOT USE_BUILTIN_TZDATA)
message(NOTICE "Currently unable to use system tzdata on Windows. Falling back to builtin tzdata.")
set(USE_BUILTIN_TZDATA 1)
endif()
endif()
include(ConfigureChecks.cmake)
add_definitions(-DHAVE_CONFIG_H)
configure_file(config.h.cmake ${CMAKE_CURRENT_BINARY_DIR}/config.h)
if(NDEBUG)
add_definitions(-DNDEBUG)
endif()
set(
INSTALL_TARGETS_DEFAULT_ARGS
RUNTIME
DESTINATION
${BIN_INSTALL_DIR}
LIBRARY
DESTINATION
${LIB_INSTALL_DIR}
ARCHIVE
DESTINATION
${LIB_INSTALL_DIR}
)
#Look for PkgConfig
#if not found then cannot proceed for GLib+LibXML or GObjectIntrospection.
#(unless/until they can be handled without pkg-config some day)
find_package(PkgConfig QUIET)
set(MIN_GOBJECT_INTROSPECTION "0.6.7")
# LIBICAL_GOBJECT_INTROSPECTION might be disabled later by some devmode options
libical_deprecated_option(
GOBJECT_INTROSPECTION
LIBICAL_GOBJECT_INTROSPECTION
"Build GObject introspection \"typelib\" files. \
Requires GObject Introspection development package ${MIN_GOBJECT_INTROSPECTION} or higher."
True
)
if(LIBICAL_GOBJECT_INTROSPECTION)
if(NOT PKG_CONFIG_FOUND)
message(
FATAL_ERROR
"You are attempting to build with GObject Introspection enabled, however that option is "
"not supported unless pkg-config can be found. Please install pkg-config and try again. "
"You can disable GObject Introspection by passing -DLIBICAL_GOBJECT_INTROSPECTION=False to cmake."
)
endif()
find_package(GObjectIntrospection ${MIN_GOBJECT_INTROSPECTION})
set_package_properties(
GObjectIntrospection
PROPERTIES
TYPE
OPTIONAL
URL
"https://wiki.gnome.org/Projects/GObjectIntrospection"
PURPOSE
"Needed in order to build the GObject introspection \"typelib\" files."
)
if(GObjectIntrospection_FOUND)
if(LIBICAL_STATIC)
message(
FATAL_ERROR
"You are attempting to build with GObject Introspection enabled, "
"however that option is not supported when building static libraries. "
"Please disable the static build option to cmake (-DLIBICAL_STATIC=False) "
"if you really want to build with GObject Introspection. Alternatively, "
"you can disable GObject Introspection (by passing -DLIBICAL_GOBJECT_INTROSPECTION=False to cmake)."
)
endif()
else()
message(
FATAL_ERROR
"You requested to build with GObject introspection, but the necessary development package "
"is missing or too low a version (GObjectIntrospection ${MIN_GOBJECT_INTROSPECTION} or higher is required). "
"You can disable GObject Introspection by passing -DLIBICAL_GOBJECT_INTROSPECTION=False to cmake."
)
endif()
endif()
# LIBICAL_GLIB_VAPI might be disabled later by some devmode options
libical_deprecated_option(ICAL_GLIB_VAPI LIBICAL_GLIB_VAPI "Build Vala \"vapi\" files." False)
if(LIBICAL_GLIB_VAPI)
if(LIBICAL_STATIC)
message(
FATAL_ERROR
"You are attempting to build the Vala api, however that option is not supported "
"when building static libraries. "
"Please disable the static build option (-DLIBICAL_STATIC=False) "
"if you really want to build the Vala api. Alternatively, "
"you can disable this feature (by passing -DLIBICAL_GLIB_VAPI=False to cmake)."
)
endif()
if(NOT LIBICAL_GOBJECT_INTROSPECTION)
message(
FATAL_ERROR
"You requested to build the Vala vapi but have not enabled the GObject Introspection. "
"Please try again also passing -DLIBICAL_GOBJECT_INTROSPECTION=True to cmake."
)
endif()
find_program(VALAC valac DOC "the Vala compiler")
if(NOT VALAC)
message(
FATAL_ERROR
"valac, the Vala compiler was not found. "
"Install it or disable Vala bindings with -DLIBICAL_GLIB_VAPI=False."
)
endif()
find_program(VAPIGEN vapigen DOC "tool to generate the Vala API")
if(NOT VAPIGEN)
message(
FATAL_ERROR
"vapigen, the tool for generating the Vala API was not found. "
"Install it or disable Vala bindings with -DLIBICAL_GLIB_VAPI=False."
)
endif()
endif()
set(MIN_GLIB "2.44")
set(MIN_LIBXML "2.7.3")
libical_deprecated_option(
ICAL_GLIB
LIBICAL_GLIB
"Build libical-glib interface. \
Requires glib ${MIN_GLIB} and libxml ${MIN_LIBXML} development packages or higher."
True
)
if(LIBICAL_GLIB)
if(NOT PKG_CONFIG_FOUND)
message(
FATAL_ERROR
"You requested to build libical-glib, however that option is not supported "
"unless pkg-config can be found. Please install pkg-config and try again. "
"Alternatively, disable the libical-glib build (by passing -DLIBICAL_GLIB=False to cmake)."
)
endif()
find_package(GLib ${MIN_GLIB})
set_package_properties(
GLib
PROPERTIES
TYPE
OPTIONAL
PURPOSE
"For the optional libical-glib interface"
)
find_package(LibXML ${MIN_LIBXML})
set_package_properties(
LibXML
PROPERTIES
TYPE
OPTIONAL
DESCRIPTION
"a library providing XML and HTML support"
URL
"http://xmlsoft.org"
PURPOSE
"For the optional libical-glib interface"
)
if(GLIB_FOUND AND LIBXML_FOUND)
set(HAVE_GLIB TRUE)
elseif(GLIB_FOUND)
message(
FATAL_ERROR
"You requested to build libical-glib, but the necessary development package "
"is missing or too low a version (libxml ${MIN_LIBXML} or higher is required). "
"Alternatively, disable the libical-glib build (by passing -DLIBICAL_GLIB=False to cmake)."
)
elseif(LIBXML_FOUND)
message(
FATAL_ERROR
"You requested to build libical-glib, but the necessary development package "
"is missing or too low a version (glib ${MIN_GLIB} or higher is required. "
"Alternatively, disable the libical-glib build (by passing -DLIBICAL_GLIB=False to cmake)."
)
else()
message(
FATAL_ERROR
"You requested to build libical-glib, but the necessary development packages "
"are missing or too low a version "
"(glib ${MIN_GLIB} and libxml ${MIN_LIBXML} or higher are required). "
"Alternatively, disable the libical-glib build (by passing -DLIBICAL_GLIB=False to cmake)."
)
endif()
endif()
libical_option(LIBICAL_GLIB_CHECK_API_FILES "Check libical-glib API files for completeness." False)
# Always check the API files in developer-mode (when libical-glib is enabled)
if(LIBICAL_DEVMODE)
set(LIBICAL_GLIB_CHECK_API_FILES True)
endif()
# LIBICAL_GLIB_BUILD_DOCS might be disabled later by some devmode options
libical_deprecated_option(ICAL_GLIB_BUILD_DOCS LIBICAL_GLIB_BUILD_DOCS "Build libical-glib documentation" True)
#
# Compiler settings
#
set(CMAKE_C_COMPILER_IS_CLANG False)
set(CMAKE_C_COMPILER_IS_GCC False)
if(DEFINED CMAKE_C_COMPILER_ID)
if("${CMAKE_C_COMPILER_ID}" MATCHES "Clang")
set(CMAKE_C_COMPILER_IS_CLANG True)
elseif("${CMAKE_C_COMPILER_ID}" MATCHES "GNU")
set(CMAKE_C_COMPILER_IS_GCC True)
endif()
endif()
if(CMAKE_C_COMPILER_IS_GCC OR CMAKE_C_COMPILER_IS_CLANG)
set(
CMAKE_C_FLAGS
"${CMAKE_C_FLAGS} \
-O2 \
-fvisibility=hidden \
-Wno-deprecated -Wall -Wunknown-pragmas -Wextra -Winit-self -Wunused -Wno-div-by-zero \
-Wundef -Wpointer-arith -Wtype-limits -Wwrite-strings -Wreturn-type \
-Wold-style-definition -Wstrict-prototypes"
)
if(LIBICAL_DEVMODE)
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Werror")
endif()
libical_add_cflag(-Wunused-but-set-variable UNUSED_BUT_SET)
libical_add_cflag(-Wlogical-op LOGICAL_OP)
libical_add_cflag(-Wsizeof-pointer-memaccess POINTER_MEMACCESS)
libical_add_cflag(-Wformat-security FORMAT_SECURITY)
libical_add_cflag(-Wredundant-decls REDUNDANT_DECLS)
libical_add_cflag(-Wunreachable-code UNREACHABLE_CODE)
libical_add_cflag(-Wvarargs VARARGS)
if(CMAKE_SYSTEM_NAME MATCHES Linux OR CMAKE_SYSTEM_NAME STREQUAL GNU)
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -D_XOPEN_SOURCE=500 -D_DEFAULT_SOURCE -D_GNU_SOURCE")
endif()
endif()
if(CMAKE_C_COMPILER_IS_CLANG)
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Qunused-arguments")
endif()
set(CMAKE_CXX_COMPILER_IS_CLANG False)
set(CMAKE_CXX_COMPILER_IS_GCC False)
if(DEFINED CMAKE_CXX_COMPILER_ID)
if("${CMAKE_CXX_COMPILER_ID}" MATCHES "Clang")
set(CMAKE_CXX_COMPILER_IS_CLANG True)
elseif("${CMAKE_CXX_COMPILER_ID}" MATCHES "GNU")
set(CMAKE_CXX_COMPILER_IS_GCC True)
endif()
endif()
if(CMAKE_CXX_COMPILER_IS_GCC OR CMAKE_CXX_COMPILER_IS_CLANG)
set(
CMAKE_CXX_FLAGS
"${CMAKE_CXX_FLAGS} \
-O2 \
-fvisibility=hidden \
-Weffc++ -Wno-deprecated -Wall -Wextra -Woverloaded-virtual -Winit-self -Wunused \
-Wno-div-by-zero -Wundef -Wpointer-arith -Wtype-limits -Wwrite-strings -Wreturn-type"
)
if(LIBICAL_DEVMODE)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Werror")
endif()
libical_add_cxxflag(-Wunused-but-set-variable UNUSED_BUT_SET)
libical_add_cxxflag(-Wlogical-op LOGICAL_OP)
libical_add_cxxflag(-Wsizeof-pointer-memaccess POINTER_MEMACCESS)
libical_add_cxxflag(-Wreorder REORDER)
libical_add_cxxflag(-Wformat-security FORMAT_SECURITY)
libical_add_cxxflag(-Wredundant-decls REDUNDANT_DECLS)
libical_add_cxxflag(-Wunreachable-code UNREACHABLE_CODE)
libical_add_cxxflag(-Wvarargs VARARGS)
if(CMAKE_SYSTEM_NAME MATCHES Linux OR CMAKE_SYSTEM_NAME STREQUAL GNU)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -D_XOPEN_SOURCE=500 -D_DEFAULT_SOURCE -D_GNU_SOURCE")
endif()
endif()
if(CMAKE_CXX_COMPILER_IS_CLANG)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Qunused-arguments")
endif()
#some test programs need to know if we are using 32-bit time
if(SIZEOF_TIME_T EQUAL 4)
set(LIBICAL_ENABLE_MSVC_32BIT_TIME_T TRUE)
endif()
################ Developer Options #####################
libical_deprecated_option(ABI_DUMPER LIBICAL_DEVMODE_ABI_DUMPER "(Developer-only) Build for abi-dumper." False)
mark_as_advanced(LIBICAL_DEVMODE_ABI_DUMPER)
if(LIBICAL_DEVMODE_ABI_DUMPER)
if(CMAKE_C_COMPILER_IS_GCC)
set(CMAKE_C_FLAGS "-g -Og")
set(CMAKE_CXX_FLAGS "-g -Og")
else()
message(FATAL_ERROR "You are trying to build for the abi-dumper using a non-GCC compiler.")
endif()
endif()
libical_option(LIBICAL_DEVMODE_MEMORY_CONSISTENCY "(Developer-only) Build with memory consistency functions." False)
if(LIBICAL_DEVMODE_MEMORY_CONSISTENCY)
set(CMAKE_BUILD_TYPE "Debug")
add_definitions(-DMEMORY_CONSISTENCY)
endif()
mark_as_advanced(LIBICAL_DEVMODE_MEMORY_CONSISTENCY)
libical_deprecated_option(
ADDRESS_SANITIZER
LIBICAL_DEVMODE_ADDRESS_SANITIZER
"(Developer-only) Build with the address sanitizer."
False
)
mark_as_advanced(LIBICAL_DEVMODE_ADDRESS_SANITIZER)
if(LIBICAL_DEVMODE_ADDRESS_SANITIZER)
if(CMAKE_C_COMPILER_IS_GCC OR CMAKE_C_COMPILER_IS_CLANG)
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fsanitize=address -g -DADDRESS_SANITIZER")
if(LIBICAL_CXX_BINDINGS)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fsanitize=address -g -DADDRESS_SANITIZER")
endif()
set(LIBRARY_TYPE SHARED)
else()
message(FATAL_ERROR "You are trying to build with the address sanitizer using a non-GCC or Clang compiler.")
endif()
endif()
libical_option(LIBICAL_DEVMODE_LEAK_SANITIZER "(Developer-only) Build with the leak sanitizer." False)
mark_as_advanced(LIBICAL_DEVMODE_LEAK_SANITIZER)
if(LIBICAL_DEVMODE_LEAK_SANITIZER)
if(CMAKE_C_COMPILER_IS_GCC OR CMAKE_C_COMPILER_IS_CLANG)
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fsanitize=leak -g -DLEAK_SANITIZER")
if(LIBICAL_CXX_BINDINGS)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fsanitize=leak -g -DLEAK_SANITIZER")
endif()
set(LIBRARY_TYPE SHARED)
message(
NOTICE
"Currently unable to build leak sanitizer for glib-based configurations."
"Disabling GLib and GLib docs, GObject_Introspection and VALA support."
)
set(LIBICAL_GLIB False)
set(LIBICAL_GOBJECT_INTROSPECTION False)
set(LIBICAL_GLIB_BUILD_DOCS False)
set(LIBICAL_GLIB_VAPI False)
else()
message(FATAL_ERROR "You are trying to build with the leak sanitizer using a non-GCC or Clang compiler.")
endif()
endif()
libical_option(LIBICAL_DEVMODE_MEMORY_SANITIZER "(Developer-only) Build with the memory sanitizer." False)
mark_as_advanced(LIBICAL_DEVMODE_MEMORY_SANITIZER)
if(LIBICAL_DEVMODE_MEMORY_SANITIZER)
if(CMAKE_C_COMPILER_IS_CLANG)
set(
CMAKE_C_FLAGS
"${CMAKE_C_FLAGS} -fsanitize=memory -fsanitize-memory-track-origins -fPIE -pie -O1 -g -DMEMORY_SANITIZER"
)
if(LIBICAL_CXX_BINDINGS)
set(
CMAKE_CXX_FLAGS
"${CMAKE_CXX_FLAGS} -fsanitize=memory -fsanitize-memory-track-origins -fPIE -pie -O1 -g -DMEMORY_SANITIZER"
)
endif()
set(LIBRARY_TYPE SHARED)
#currently unavailable for glib-based code
message(
NOTICE
"Currently unable to build memory sanitizer for glib-based configurations."
"Disabling GLib and GLib docs, GObject_Introspection and VALA support."
)
set(LIBICAL_GLIB False)
set(LIBICAL_GOBJECT_INTROSPECTION False)
set(LIBICAL_GLIB_BUILD_DOCS False)
set(LIBICAL_GLIB_VAPI False)
else()
message(FATAL_ERROR "You are trying to build with the memory sanitizer using a non-Clang compiler.")
endif()
endif()
libical_deprecated_option(
THREAD_SANITIZER
LIBICAL_DEVMODE_THREAD_SANITIZER
"(Developer-only) Build with the thread sanitizer."
False
)
mark_as_advanced(LIBICAL_DEVMODE_THREAD_SANITIZER)
if(LIBICAL_DEVMODE_THREAD_SANITIZER)
if(CMAKE_C_COMPILER_IS_GCC OR CMAKE_C_COMPILER_IS_CLANG)
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fsanitize=thread -O1 -g -DTHREAD_SANITIZER")
if(LIBICAL_CXX_BINDINGS)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fsanitize=thread -O1 -g -DTHREAD_SANITIZER")
endif()
set(LIBRARY_TYPE SHARED)
message(
NOTICE
"Currently unable to build thread sanitizer for glib-based configurations."
"Disabling GLib and GLib docs, GObject_Introspection and VALA support."
)
set(LIBICAL_GLIB False)
set(LIBICAL_GOBJECT_INTROSPECTION False)
set(LIBICAL_GLIB_BUILD_DOCS False)
set(LIBICAL_GLIB_VAPI False)
else()
message(FATAL_ERROR "You are trying to build with the thread sanitizer using a non-GCC or Clang compiler.")
endif()
endif()
libical_deprecated_option(
UNDEFINED_SANITIZER
LIBICAL_DEVMODE_UNDEFINED_SANITIZER
"(Developer-only) Build with the undefined sanitizer."
False
)
mark_as_advanced(LIBICAL_DEVMODE_UNDEFINED_SANITIZER)
if(LIBICAL_DEVMODE_UNDEFINED_SANITIZER)
if(CMAKE_C_COMPILER_IS_GCC OR CMAKE_C_COMPILER_IS_CLANG)
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fsanitize=undefined -O1 -g -DUNDEFINED_SANITIZER -lubsan")
if(LIBICAL_CXX_BINDINGS)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fsanitize=undefined -O1 -g -DUNDEFINED_SANITIZER -lubsan")
endif()
set(LIBRARY_TYPE SHARED)
else()
message(FATAL_ERROR "You are trying to build with the undefined sanitizer using a non-GCC or Clang compiler.")
endif()
endif()
mark_as_advanced(LIBICAL_DEVMODE_SYNCMODE_THREADLOCAL)
libical_deprecated_option(
LIBICAL_SYNCMODE_THREADLOCAL
LIBICAL_DEVMODE_SYNCMODE_THREADLOCAL
"Mark global variables as thread-local."
False
)
libical_deprecated_option(
ENABLE_LTO_BUILD
CMAKE_INTERPROCEDURAL_OPTIMIZATION
"Build a link-time optimized version."
False
)
if(CMAKE_INTERPROCEDURAL_OPTIMIZATION)
include(CheckIPOSupported)
# A fatal error is issued if IPO not supported by the compiler
check_ipo_supported()
endif()
libical_option(LIBICAL_BUILD_TESTING "Build tests." False)
# Always build the test suite in developer-mode
if(LIBICAL_DEVMODE)
set(LIBICAL_BUILD_TESTING True)
endif()
libical_option(LIBICAL_BUILD_EXAMPLES "Build examples." True)
########### Configure pkg-config variables #########
set(VERSION "${CMAKE_PROJECT_VERSION}")
set(prefix "${CMAKE_INSTALL_PREFIX}")
set(exec_prefix "\${prefix}")
if(IS_ABSOLUTE ${LIB_INSTALL_DIR})
set(libdir "${LIB_INSTALL_DIR}")
else()
set(libdir "\${prefix}/${LIB_INSTALL_DIR}")
endif()
if(IS_ABSOLUTE ${INCLUDE_INSTALL_DIR})
set(includedir "${INCLUDE_INSTALL_DIR}")
else()
set(includedir "\${prefix}/include")
endif()
if(CMAKE_THREAD_LIBS_INIT)
set(PTHREAD_LIBS_PRIVATE "\nLibs.private: ${CMAKE_THREAD_LIBS_INIT}")
else()
set(PTHREAD_LIBS_PRIVATE "")
endif()
if(ICU_FOUND)
set(REQUIRES_PRIVATE_ICU "\nRequires.private: icu-i18n")
else()
set(REQUIRES_PRIVATE_ICU "")
endif()
################# build subdirs ########################