mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2024-10-01 01:26:01 -04:00
10 lines
287 B
CMake
10 lines
287 B
CMake
|
|
find_path(GPGERROR_INCLUDE_DIR gpg-error.h)
|
|
|
|
find_library(GPGERROR_LIBRARIES gpg-error)
|
|
|
|
mark_as_advanced(GPGERROR_LIBRARIES GPGERROR_INCLUDE_DIR)
|
|
|
|
include(FindPackageHandleStandardArgs)
|
|
find_package_handle_standard_args(LibGPGError DEFAULT_MSG GPGERROR_LIBRARIES GPGERROR_INCLUDE_DIR)
|