From 10ae570ac569a658db7ece62e5bdf0cddb12fb9a Mon Sep 17 00:00:00 2001 From: Nico Weber Date: Sun, 29 Jan 2023 17:23:23 -0500 Subject: [PATCH] Tests: Make LibGfx tests not depend on LibGUI As far as I can tell, that's not needed and never was. --- Tests/LibGfx/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tests/LibGfx/CMakeLists.txt b/Tests/LibGfx/CMakeLists.txt index 67a4650f5c..71402111d4 100644 --- a/Tests/LibGfx/CMakeLists.txt +++ b/Tests/LibGfx/CMakeLists.txt @@ -5,7 +5,7 @@ set(TEST_SOURCES ) foreach(source IN LISTS TEST_SOURCES) - serenity_test("${source}" LibGfx LIBS LibGfx LibGUI) + serenity_test("${source}" LibGfx LIBS LibGfx) endforeach() install(FILES TestFont.font DESTINATION usr/Tests/LibGfx)