mirror of
https://github.com/RGBCube/serenity
synced 2025-07-24 23:07:34 +00:00

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.
18 lines
423 B
CMake
18 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)
|