Welcome to mirror list, hosted at ThFree Co, Russian Federation.

FindLibGPGError.cmake « cmake - github.com/keepassxreboot/keepassxc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fe9ef91232598e0c378dd22e56867c57345f6604 (plain)
1
2
3
4
5
6
7
8
9

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)