mirror of
https://github.com/RGBCube/serenity
synced 2025-05-26 01:55:08 +00:00

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`.
9 lines
211 B
CMake
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)
|