From 1bf3c5343274fdf3cc08eddcf49cea18736bc136 Mon Sep 17 00:00:00 2001 From: Szczepan Zalega Date: Wed, 27 Apr 2022 16:39:41 +0200 Subject: [PATCH] Enable CPACK package generator --- CMakeLists.txt | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 306dfa2..f6d00b7 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -240,13 +240,14 @@ ENDIF() -#SET(CPACK_GENERATOR -# "DEB;RPM") -# build a CPack driven installer package +SET(CPACK_GENERATOR + "DEB;RPM") + # build a CPack driven installer package include (InstallRequiredSystemLibraries) set (CPACK_RESOURCE_FILE_LICENSE "${CMAKE_CURRENT_SOURCE_DIR}/LICENSE") set (CPACK_PACKAGE_VERSION "${PROJECT_VERSION}") +set (CPACK_PACKAGE_CONTACT "info@nitrokey.com") include (CPack) # Build Doxygen documentation for the C API