diff options
author | Nico Weber <thakis@chromium.org> | 2023-01-29 17:23:23 -0500 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2023-01-29 22:36:13 +0000 |
commit | 10ae570ac569a658db7ece62e5bdf0cddb12fb9a (patch) | |
tree | dc69a12dc4c8bc82078fb80e7c88de083c6c5006 /Tests | |
parent | fef15becb238c1c4a15fb8eed90b8bac03ff03cc (diff) | |
download | serenity-10ae570ac569a658db7ece62e5bdf0cddb12fb9a.zip |
Tests: Make LibGfx tests not depend on LibGUI
As far as I can tell, that's not needed and never was.
Diffstat (limited to 'Tests')
-rw-r--r-- | Tests/LibGfx/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
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) |