gv-me
gv-me
Thanks for your quick response. I am using the following code to include date library: ```cmake set( USE_SYSTEM_TZ_DB ON CACHE INTERNAL "") set( ENABLE_DATE_TESTING OFF CACHE INTERNAL "") set( BUILD_TZ_LIB...
the consumer projects link to a library (which links to `date::date-tz`) they don't set any compile definitions themselves. Something like this. ```cmake # libA/CMakeLists.txt set( USE_SYSTEM_TZ_DB ON CACHE INTERNAL "")...
okay so I just did a quick check and it seems that the `tz.h` included from the second project does also have `USE_OS_TZDB` set. Adding this at the top of...