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. :^)
This commit is contained in:
Sam Atkins 2023-01-15 20:37:01 +00:00 committed by Linus Groh
parent 0dce7b72f9
commit a4c8353472

View File

@ -3,5 +3,5 @@ set(TEST_SOURCES
)
foreach(source IN LISTS TEST_SOURCES)
serenity_test("${source}" LibGfx)
serenity_test("${source}" LibTTF LIBS LibGfx)
endforeach()