ladybird/Tests/LibGfx/CMakeLists.txt
Zaggy1024 66c9696687 LibGfx: Add initial ISO BMFF parsing and a utility to print file info
Currently, the `isobmff` utility will only print the media file type
info from the FileTypeBox (major brand and compatible brands), as well
as the names and sizes of top-level boxes.
2023-07-27 12:02:37 +01:00

19 lines
423 B
CMake

set(TEST_SOURCES
BenchmarkGfxPainter.cpp
BenchmarkJPEGLoader.cpp
TestDeltaE.cpp
TestFontHandling.cpp
TestGfxBitmap.cpp
TestICCProfile.cpp
TestImageDecoder.cpp
TestParseISOBMFF.cpp
TestRect.cpp
TestScalingFunctions.cpp
)
foreach(source IN LISTS TEST_SOURCES)
serenity_test("${source}" LibGfx LIBS LibGfx)
endforeach()
install(DIRECTORY test-inputs DESTINATION usr/Tests/LibGfx)