From 7b82f37ba326565eca9738a3a71be90347342781 Mon Sep 17 00:00:00 2001 From: Sam Atkins Date: Mon, 16 Jan 2023 15:20:10 +0000 Subject: [PATCH] Tests: Add missing library dependency for LibTimeZone tests --- Tests/LibTimeZone/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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=$)