mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-12-29 06:02:07 +03:00
60c7ff9db1
This is based largely on Adobe's EXAMPLE 2 on p176 of the specification, manually edited slightly and then cleaned up with mutool. https://opensource.adobe.com/dc-acrobat-sdk-docs/pdfstandards/PDF32000_2008.pdf
25 lines
520 B
CMake
25 lines
520 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
|
|
encoding.pdf
|
|
encryption_nocopy.pdf
|
|
linearized.pdf
|
|
non-linearized.pdf
|
|
oss-fuzz-testcase-62065.pdf
|
|
password-is-sup.pdf
|
|
pattern.pdf
|
|
text.pdf
|
|
type1.pdf
|
|
type3.pdf
|
|
)
|
|
install(FILES ${TEST_FILES} DESTINATION home/anon/Documents/pdf)
|
|
install(FILES ${TEST_FILES} DESTINATION usr/Tests/LibPDF)
|