mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-23 01:41:59 -05:00
c1ea8fa01c
Sometimes going across would put is one active range away from being in-bounds, so check the two neighboring ranges too.
26 lines
580 B
CMake
26 lines
580 B
CMake
set(TEST_SOURCES
|
|
BenchmarkGfxPainter.cpp
|
|
BenchmarkJPEGLoader.cpp
|
|
BenchmarkPNG.cpp
|
|
TestColor.cpp
|
|
TestDeltaE.cpp
|
|
TestFontHandling.cpp
|
|
TestGfxBitmap.cpp
|
|
TestICCProfile.cpp
|
|
TestImageDecoder.cpp
|
|
TestImageWriter.cpp
|
|
TestMedianCut.cpp
|
|
TestPainter.cpp
|
|
TestParseISOBMFF.cpp
|
|
TestPath.cpp
|
|
TestRect.cpp
|
|
TestScalingFunctions.cpp
|
|
TestWOFF.cpp
|
|
TestWOFF2.cpp
|
|
)
|
|
|
|
foreach(source IN LISTS TEST_SOURCES)
|
|
serenity_test("${source}" LibGfx LIBS LibGfx)
|
|
endforeach()
|
|
|
|
install(DIRECTORY test-inputs DESTINATION usr/Tests/LibGfx)
|