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

github.com/nextcloud/desktop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/cmake
diff options
context:
space:
mode:
authorKlaas Freitag <freitag@owncloud.com>2012-11-28 10:54:57 +0400
committerKlaas Freitag <freitag@owncloud.com>2012-11-28 13:44:25 +0400
commit9d05a53c892e796ad586cf68b911713263b34858 (patch)
tree75e9aa2eb46af6234d5e4337235188951c08cfab /cmake
parent56794e8d7c1587e8ed90523cc4dad116cbedc02d (diff)
Fix cmake checks on QtKeyChain.
Diffstat (limited to 'cmake')
-rw-r--r--cmake/modules/FindQtKeychain.cmake7
1 files changed, 2 insertions, 5 deletions
diff --git a/cmake/modules/FindQtKeychain.cmake b/cmake/modules/FindQtKeychain.cmake
index 573c39096..d3d221b9d 100644
--- a/cmake/modules/FindQtKeychain.cmake
+++ b/cmake/modules/FindQtKeychain.cmake
@@ -9,13 +9,10 @@ find_path(QTKEYCHAIN_INCLUDE_DIR qtkeychain/keychain.h)
find_library(QTKEYCHAIN_LIBRARY NAMES libqtkeychain qtkeychain)
-set(QTKEYCHAIN_LIBRARIES ${QTKEYCHAIN_LIBRARY} )
-set(QTKEYCHAIN_INCLUDE_DIRS ${QTKEYCHAIN_INCLUDE_DIR} )
-
include(FindPackageHandleStandardArgs)
# handle the QUIETLY and REQUIRED arguments and set QTKEYCHAIN_FOUND to TRUE
# if all listed variables are TRUE
find_package_handle_standard_args(QtKeyChain DEFAULT_MSG
- QTKEYCHAIN_LIBRARY QTKEYCHAIN_INCLUDE_DIR)
+ QTKEYCHAIN_LIBRARY QTKEYCHAIN_INCLUDE_DIR)
-mark_as_advanced(QTKEYCHAIN_INCLUDE_DIR QTKEYCHAIN_LIBRARY ) \ No newline at end of file
+mark_as_advanced(QTKEYCHAIN_INCLUDE_DIR QTKEYCHAIN_LIBRARY )