1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 09:27:35 +00:00

Tests: Add missing library dependency for LibTimeZone tests

This commit is contained in:
Sam Atkins 2023-01-16 15:20:10 +00:00 committed by Linus Groh
parent c0c700ed11
commit 7b82f37ba3

View file

@ -3,7 +3,7 @@ set(TEST_SOURCES
)
foreach(source IN LISTS TEST_SOURCES)
serenity_test("${source}" LibTimeZone LIBS LibCore)
serenity_test("${source}" LibTimeZone LIBS LibCore LibTimeZone)
get_filename_component(target "${source}" NAME_WLE)
target_compile_definitions("${target}" PRIVATE ENABLE_TIME_ZONE_DATA=$<BOOL:${ENABLE_TIME_ZONE_DATABASE_DOWNLOAD}>)