aboutsummaryrefslogtreecommitdiffstats
path: root/zlib-flate
diff options
context:
space:
mode:
Diffstat (limited to 'zlib-flate')
-rw-r--r--zlib-flate/CMakeLists.txt16
1 files changed, 16 insertions, 0 deletions
diff --git a/zlib-flate/CMakeLists.txt b/zlib-flate/CMakeLists.txt
new file mode 100644
index 00000000..4db31ef4
--- /dev/null
+++ b/zlib-flate/CMakeLists.txt
@@ -0,0 +1,16 @@
+add_executable(zlib-flate zlib-flate.cc)
+target_link_libraries(zlib-flate libqpdf)
+
+add_test(
+ NAME zlib-flate
+ COMMAND ${RUN_QTEST}
+ --top ${qpdf_SOURCE_DIR}
+ --bin $<TARGET_FILE_DIR:zlib-flate>
+ --bin $<TARGET_FILE_DIR:libqpdf> # for Windows to find DLL
+ --code ${qpdf_SOURCE_DIR}/zlib-flate
+ --color ${QTEST_COLOR}
+ --show-on-failure ${SHOW_FAILED_TEST_OUTPUT})
+
+install(TARGETS zlib-flate
+ TYPE RUNTIME
+ COMPONENT ${COMPONENT_CLI})