diff options
author | Sam Atkins <atkinssj@serenityos.org> | 2023-01-16 15:20:10 +0000 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2023-01-19 11:50:10 +0000 |
commit | 7b82f37ba326565eca9738a3a71be90347342781 (patch) | |
tree | e065d05f5d64faae47b9e45c3890a4e370c3df43 | |
parent | c0c700ed115e99586451cb80ab8e5d51dd890fea (diff) | |
download | serenity-7b82f37ba326565eca9738a3a71be90347342781.zip |
Tests: Add missing library dependency for LibTimeZone tests
-rw-r--r-- | Tests/LibTimeZone/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tests/LibTimeZone/CMakeLists.txt b/Tests/LibTimeZone/CMakeLists.txt index 770a8ae497..db9498537e 100644 --- a/Tests/LibTimeZone/CMakeLists.txt +++ b/Tests/LibTimeZone/CMakeLists.txt @@ -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}>) |