serenity/Tests/LibPDF/CMakeLists.txt
Nico Weber ed9b267c0a Tests: Install recently(ish) added PDF test files
These aren't needed for any automated tests, but it's still nice to have
them in the OS for manual testing.
2024-10-18 21:54:38 -04:00

31 lines
664 B
CMake

set(TEST_SOURCES
BenchmarkPDF.cpp
TestPDF.cpp
)
foreach(source IN LISTS TEST_SOURCES)
serenity_test("${source}" LibPDF LIBS LibCore LibGfx LibPDF)
endforeach()
set(TEST_FILES
colorspaces.pdf
complex.pdf
encoding.pdf
encryption_nocopy.pdf
jbig2-globals.pdf
linearized.pdf
non-linearized.pdf
offset.pdf
oss-fuzz-testcase-62065.pdf
password-is-sup.pdf
paths.pdf
pattern.pdf
rotate.pdf
standard-14-fonts.pdf
text.pdf
type1.pdf
type3.pdf
wide-gamut-only.pdf
)
install(FILES ${TEST_FILES} DESTINATION home/anon/Documents/pdf)
install(FILES ${TEST_FILES} DESTINATION usr/Tests/LibPDF)