From a4c8353472ebd1c432fbd5ca37f611f205660b60 Mon Sep 17 00:00:00 2001 From: Sam Atkins Date: Sun, 15 Jan 2023 20:37:01 +0000 Subject: [PATCH] Tests: Correct `serenity_test()` invocation for LibTTF Putting the LibTTF tests into the LibGfx directory worked fine before, but causes issues if we try and call this from Lagom. Also, it's tidier to put LibTTF tests in a LibTTF directory. :^) --- Tests/LibTTF/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tests/LibTTF/CMakeLists.txt b/Tests/LibTTF/CMakeLists.txt index 15bdb527ab6..a88509d8cbe 100644 --- a/Tests/LibTTF/CMakeLists.txt +++ b/Tests/LibTTF/CMakeLists.txt @@ -3,5 +3,5 @@ set(TEST_SOURCES ) foreach(source IN LISTS TEST_SOURCES) - serenity_test("${source}" LibGfx) + serenity_test("${source}" LibTTF LIBS LibGfx) endforeach()