Fixed ci builds

ubuntu:14.04 does not have quazip5 libraries in the standard repository, therefore only insecure builds are created using the ci server
This commit is contained in:
Christian Kieschnick 2019-01-04 11:03:15 +01:00
parent 080b02e9d5
commit ba604390d2
4 changed files with 47 additions and 24 deletions

View file

@ -359,8 +359,9 @@ include_directories(SYSTEM ${ARGON2_INCLUDE_DIR})
# Optional
if(WITH_XC_KEESHARE)
# ZLIB is needed and already required
find_package(QuaZip QUIET)
if(QuaZip_FOUND)
if(QUAZIP_FOUND)
message(STATUS "Found QuaZip - allow KeeShare with secure container\n")
set(WITH_XC_KEESHARE_INSECURE ON)
set(WITH_XC_KEESHARE_SECURE ON)