From b8aff90997116a84350018f88f1eabdaa368d11b Mon Sep 17 00:00:00 2001 From: Jay Berkenbilt Date: Sat, 5 Mar 2022 08:24:51 -0500 Subject: Add cmake configuration files --- examples/CMakeLists.txt | 52 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 examples/CMakeLists.txt (limited to 'examples/CMakeLists.txt') diff --git a/examples/CMakeLists.txt b/examples/CMakeLists.txt new file mode 100644 index 00000000..40ecd603 --- /dev/null +++ b/examples/CMakeLists.txt @@ -0,0 +1,52 @@ +set(EXAMPLE_CXX_PROGRAMS + pdf-attach-file + pdf-bookmarks + pdf-count-strings + pdf-create + pdf-custom-filter + pdf-double-page-size + pdf-filter-tokens + pdf-invert-images + pdf-mod-info + pdf-name-number-tree + pdf-npages + pdf-overlay-page + pdf-parse-content + pdf-set-form-values + pdf-split-pages + qpdf-job) +set(EXAMPLE_C_PROGRAMS + pdf-c-objects + pdf-linearize + qpdfjob-c) + +foreach(PROG ${EXAMPLE_CXX_PROGRAMS}) + add_executable(${PROG} ${PROG}.cc) + target_link_libraries(${PROG} libqpdf) +endforeach() +foreach(PROG ${EXAMPLE_C_PROGRAMS}) + add_executable(${PROG} ${PROG}.c) + target_link_libraries(${PROG} libqpdf) + set_property(TARGET ${PROG} PROPERTY LINKER_LANGUAGE CXX) +endforeach() +target_include_directories(pdf-create PRIVATE ${JPEG_INCLUDE}) + +add_test( + NAME examples + COMMAND ${RUN_QTEST} + --top ${qpdf_SOURCE_DIR} + --bin $ + --bin $ + --bin $ # for Windows to find DLL + --code ${qpdf_SOURCE_DIR}/examples + --color ${QTEST_COLOR} + --show-on-failure ${SHOW_FAILED_TEST_OUTPUT} + --tc "${qpdf_SOURCE_DIR}/examples/*.cc" + --tc "${qpdf_SOURCE_DIR}/examples/*.c") + +file(GLOB EXAMPLES_SRC "*.c" "*.cc") +if(INSTALL_EXAMPLES) + install(FILES ${EXAMPLES_SRC} + DESTINATION ${CMAKE_INSTALL_DOCDIR}/examples + COMPONENT ${COMPONENT_EXAMPLES}) +endif() -- cgit v1.2.3-54-g00ecf