ladybird/Tests/LibGL/CMakeLists.txt
Jelle Raaijmakers 8cfabbcd93 Tests: Implement reference image testing for LibGL
Each LibGL test can now be tested against a reference QOI image.
Initially, these images can be generated by setting `SAVE_OUTPUT` to
`true`, which will save a bunch of QOI images to `/home/anon`.
2022-04-17 09:58:29 +04:30

9 lines
211 B
CMake

set(TEST_SOURCES
TestRender.cpp
)
foreach(source IN LISTS TEST_SOURCES)
serenity_test("${source}" LibGL LIBS LibCore LibGL)
endforeach()
install(DIRECTORY reference-images DESTINATION usr/Tests/LibGL)