mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2024-10-01 01:26:01 -04:00
12990e59ad
* Remove QuaZip dependency in favor of minizip * Remove signature checks, but maintain signatures for backwards compatibility * Remove UI components related to certificates except for personal certificate for backwards compatibility * Default to unsigned containers (*.kdbx)
10 lines
438 B
CMake
10 lines
438 B
CMake
# MINIZIP_FOUND - Minizip library was found
|
|
# MINIZIP_INCLUDE_DIR - Path to Minizip include dir
|
|
# MINIZIP_LIBRARIES - List of Minizip libraries
|
|
|
|
find_library(MINIZIP_LIBRARIES NAMES minizip libminizip)
|
|
find_path(MINIZIP_INCLUDE_DIR zip.h PATH_SUFFIXES minizip)
|
|
|
|
include(FindPackageHandleStandardArgs)
|
|
find_package_handle_standard_args(Minizip DEFAULT_MSG MINIZIP_LIBRARIES MINIZIP_INCLUDE_DIR)
|