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

github.com/keepassxreboot/keepassxc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/cmake
diff options
context:
space:
mode:
authorJanek Bevendorff <janek@jbev.net>2018-01-13 03:38:26 +0300
committerJonathan White <support@dmapps.us>2018-01-13 22:25:01 +0300
commit824607080a5fda83e6d667b076f99a607b09721d (patch)
tree03256f9cb99d8ee2b8a09c093610ff0f8bc7c9b3 /cmake
parent337a21f6d6bc022e4a8928a96c941f910ffcc797 (diff)
Install needed PPA packages for deployment
Diffstat (limited to 'cmake')
-rw-r--r--cmake/FindLibGPGError.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmake/FindLibGPGError.cmake b/cmake/FindLibGPGError.cmake
index c1e1b8686..9a18371ba 100644
--- a/cmake/FindLibGPGError.cmake
+++ b/cmake/FindLibGPGError.cmake
@@ -14,10 +14,10 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
find_path(GPGERROR_INCLUDE_DIR gpg-error.h)
-
find_library(GPGERROR_LIBRARIES gpg-error)
mark_as_advanced(GPGERROR_LIBRARIES GPGERROR_INCLUDE_DIR)
include(FindPackageHandleStandardArgs)
+include_directories(${GPGERROR_INCLUDE_DIR})
find_package_handle_standard_args(LibGPGError DEFAULT_MSG GPGERROR_LIBRARIES GPGERROR_INCLUDE_DIR)