diff options
author | Sam Atkins <atkinssj@serenityos.org> | 2023-01-15 20:37:01 +0000 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2023-01-19 11:50:10 +0000 |
commit | a4c8353472ebd1c432fbd5ca37f611f205660b60 (patch) | |
tree | 85b4f50bee639a8a7a0904c195a6cad596426544 | |
parent | 0dce7b72f9804775c64016ceb0991f66acfbb29b (diff) | |
download | serenity-a4c8353472ebd1c432fbd5ca37f611f205660b60.zip |
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. :^)
-rw-r--r-- | Tests/LibTTF/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tests/LibTTF/CMakeLists.txt b/Tests/LibTTF/CMakeLists.txt index 15bdb527ab..a88509d8cb 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() |