diff options
author | Markus Minichmayr <markus@tapkey.com> | 2022-03-06 22:32:25 +0100 |
---|---|---|
committer | Allen Winter <allen.winter@kdab.com> | 2022-06-03 11:17:08 -0400 |
commit | 0d932910200e77b884d89917545495215567a9f6 (patch) | |
tree | 3c95f72bd3424e756964781db9e2c568a8d8426e /ConfigureChecks.cmake | |
parent | 19ca5336c707bb70b3c62805c04fe04e35941d68 (diff) | |
download | libical-git-0d932910200e77b884d89917545495215567a9f6.tar.gz |
Introduce `USE_64BIT_ICALTIME_T` CMake option to allow redirecting icaltime_t to 64-bit types.
Diffstat (limited to 'ConfigureChecks.cmake')
-rw-r--r-- | ConfigureChecks.cmake | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ConfigureChecks.cmake b/ConfigureChecks.cmake index 08b74f4e..71a4284b 100644 --- a/ConfigureChecks.cmake +++ b/ConfigureChecks.cmake @@ -81,6 +81,7 @@ check_type_size(pid_t SIZEOF_PID_T) check_type_size(size_t SIZEOF_SIZE_T) check_type_size(ssize_t SIZEOF_SSIZE_T) check_type_size(time_t SIZEOF_TIME_T) +check_type_size(${ICAL_ICALTIME_T_TYPE} SIZEOF_ICALTIME_T) check_type_size(wint_t SIZEOF_WINT_T) include(FindThreads) |