diff options
Diffstat (limited to 'Userland/Libraries/LibTimeZone/CMakeLists.txt')
-rw-r--r-- | Userland/Libraries/LibTimeZone/CMakeLists.txt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Userland/Libraries/LibTimeZone/CMakeLists.txt b/Userland/Libraries/LibTimeZone/CMakeLists.txt index b885df29f3..c1e9f992ae 100644 --- a/Userland/Libraries/LibTimeZone/CMakeLists.txt +++ b/Userland/Libraries/LibTimeZone/CMakeLists.txt @@ -4,8 +4,10 @@ set(SOURCES TimeZone.cpp ${TIME_ZONE_DATA_SOURCES} ) +set(GENERATED_SOURCES ${CURRENT_LIB_GENERATED}) add_library(LibTimeZone OBJECT ${SOURCES}) +serenity_generated_sources(LibTimeZone) target_compile_definitions(LibTimeZone PRIVATE ENABLE_TIME_ZONE_DATA=$<BOOL:${ENABLE_TIME_ZONE_DATABASE_DOWNLOAD}>) # NOTE: These objects are used by the DynamicLoader, which is always built without coverage instrumentation. |