ladybird/Tests/LibTTF/CMakeLists.txt
Sam Atkins a4c8353472 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. :^)
2023-01-19 11:50:10 +00:00

8 lines
138 B
CMake

set(TEST_SOURCES
TestCmap.cpp
)
foreach(source IN LISTS TEST_SOURCES)
serenity_test("${source}" LibTTF LIBS LibGfx)
endforeach()