summaryrefslogtreecommitdiff
path: root/Tests/LibGfx
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/LibGfx')
-rw-r--r--Tests/LibGfx/CMakeLists.txt10
1 files changed, 7 insertions, 3 deletions
diff --git a/Tests/LibGfx/CMakeLists.txt b/Tests/LibGfx/CMakeLists.txt
index cee5cfbe62..cf18c0e162 100644
--- a/Tests/LibGfx/CMakeLists.txt
+++ b/Tests/LibGfx/CMakeLists.txt
@@ -1,5 +1,9 @@
-file(GLOB TEST_SOURCES CONFIGURE_DEPENDS "*.cpp")
+set(TEST_SOURCES
+ BenchmarkGfxPainter.cpp
+ TestFontHandling.cpp
+ TestImageDecoder.cpp
+)
-foreach(source ${TEST_SOURCES})
- serenity_test(${source} LibGfx LIBS LibGUI)
+foreach(source IN LISTS TEST_SOURCES)
+ serenity_test("${source}" LibGfx LIBS LibGUI)
endforeach()