From 7f95043c0c10c13d2ed29914025c6e8f6e77ae53 Mon Sep 17 00:00:00 2001 From: Clément Mouline Date: Wed, 15 Apr 2020 17:01:59 +0200 Subject: cpack: adding support for ubuntu 20 --- cmake/cpack.cmake | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'cmake') diff --git a/cmake/cpack.cmake b/cmake/cpack.cmake index ffb5395..be4c085 100644 --- a/cmake/cpack.cmake +++ b/cmake/cpack.cmake @@ -53,6 +53,11 @@ IF(CPACK_TYPE STREQUAL Ubuntu18) INCLUDE(${CMAKE_HOME_DIRECTORY}/cmake/debian/debian.cmake) ENDIF(CPACK_TYPE STREQUAL Ubuntu18) +IF(CPACK_TYPE STREQUAL Ubuntu20) + SET(CPACK_DEBIAN_PACKAGE_DEPENDS "libc6 (>= 2.31), libssl1.1 (>= 1.1.1d), libpcre3 (>= 8.39)") + INCLUDE(${CMAKE_HOME_DIRECTORY}/cmake/debian/debian.cmake) +ENDIF(CPACK_TYPE STREQUAL Ubuntu20) + IF(CPACK_TYPE STREQUAL Centos7) SET(CPACK_RPM_PACKAGE_LICENSE "GPL") SET(CPACK_RPM_PACKAGE_URL "http://accel-ppp.org") -- cgit v1.2.3