mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-23 09:51:57 -05:00
4c6afd4763
These aren't needed for any automated tests, but it's still nice to have them in the OS for manual testing.
22 lines
487 B
CMake
22 lines
487 B
CMake
set(TEST_SOURCES
|
|
TestPDF.cpp
|
|
)
|
|
|
|
foreach(source IN LISTS TEST_SOURCES)
|
|
serenity_test("${source}" LibPDF LIBS LibCore LibPDF)
|
|
endforeach()
|
|
|
|
set(TEST_FILES
|
|
colorspaces.pdf
|
|
complex.pdf
|
|
encryption_nocopy.pdf
|
|
linearized.pdf
|
|
non-linearized.pdf
|
|
oss-fuzz-testcase-62065.pdf
|
|
password-is-sup.pdf
|
|
text.pdf
|
|
type1.pdf
|
|
type3.pdf
|
|
)
|
|
install(FILES ${TEST_FILES} DESTINATION home/anon/Documents/pdf)
|
|
install(FILES ${TEST_FILES} DESTINATION usr/Tests/LibPDF)
|