diff options
author | xebd <xeb@mail.ru> | 2022-09-12 10:55:26 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-12 10:55:26 +0300 |
commit | 25c72614bf8106b0e4f71e2bce70514b03858463 (patch) | |
tree | 34377047de0a3515ae175bce1e822765184951c5 /cmake | |
parent | 38d96b8e20608fb743d543fe3f08ad4b9d1dcd66 (diff) | |
parent | 785798c6f19863e49a5f061c42ad3331c76055d6 (diff) | |
download | accel-ppp-25c72614bf8106b0e4f71e2bce70514b03858463.tar.gz accel-ppp-25c72614bf8106b0e4f71e2bce70514b03858463.zip |
Merge pull request #60 from svlobanov/ci2
ci: add build jobs (Github CI)
Diffstat (limited to 'cmake')
-rw-r--r-- | cmake/cpack.cmake | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/cmake/cpack.cmake b/cmake/cpack.cmake index 7de53ad6..db7fe123 100644 --- a/cmake/cpack.cmake +++ b/cmake/cpack.cmake @@ -48,6 +48,11 @@ IF(CPACK_TYPE STREQUAL Debian11) INCLUDE(${CMAKE_HOME_DIRECTORY}/cmake/debian/debian.cmake) ENDIF(CPACK_TYPE STREQUAL Debian11) +IF(CPACK_TYPE STREQUAL Debian12) + SET(CPACK_DEBIAN_PACKAGE_DEPENDS "libc6 (>= 2.34), libssl3 (>= 3.0.5), libpcre3 (>= 8.39)") + INCLUDE(${CMAKE_HOME_DIRECTORY}/cmake/debian/debian.cmake) +ENDIF(CPACK_TYPE STREQUAL Debian12) + IF(CPACK_TYPE STREQUAL Ubuntu16) SET(CPACK_DEBIAN_PACKAGE_DEPENDS "libc6 (>= 2.23), libssl1.0.0 (>= 1.0.0), libpcre3 (>= 8.39)") INCLUDE(${CMAKE_HOME_DIRECTORY}/cmake/debian/debian.cmake) @@ -63,6 +68,11 @@ IF(CPACK_TYPE STREQUAL Ubuntu20) INCLUDE(${CMAKE_HOME_DIRECTORY}/cmake/debian/debian.cmake) ENDIF(CPACK_TYPE STREQUAL Ubuntu20) +IF(CPACK_TYPE STREQUAL Ubuntu22) + SET(CPACK_DEBIAN_PACKAGE_DEPENDS "libc6 (>= 2.35), libssl3 (>= 3.0.2), libpcre3 (>= 8.39)") + INCLUDE(${CMAKE_HOME_DIRECTORY}/cmake/debian/debian.cmake) +ENDIF(CPACK_TYPE STREQUAL Ubuntu22) + IF(CPACK_TYPE STREQUAL Centos7) SET(CPACK_RPM_PACKAGE_LICENSE "GPL") SET(CPACK_RPM_PACKAGE_URL "http://accel-ppp.org") |