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:
authorDominik Schmidt <dev@dominik-schmidt.de>2017-05-26 14:25:43 +0300
committerMarkus Goetz <markus@woboq.com>2017-05-29 22:44:25 +0300
commit0fc3df45ceeb4b3677a9b359e1810c254516dded (patch)
treeadf747a77f0b1e3396403c3e60ca740ddf1f74b5 /cmake
parent78dede2ac4468d5fc9bae79f57a49d591c3782fc (diff)
Remove obsolete FindQtKeychain for Qt4
Diffstat (limited to 'cmake')
-rw-r--r--cmake/modules/FindQtKeychain.cmake39
1 files changed, 0 insertions, 39 deletions
diff --git a/cmake/modules/FindQtKeychain.cmake b/cmake/modules/FindQtKeychain.cmake
deleted file mode 100644
index 6ef1cf7eb..000000000
--- a/cmake/modules/FindQtKeychain.cmake
+++ /dev/null
@@ -1,39 +0,0 @@
-# (c) 2014 Copyright ownCloud GmbH
-# Redistribution and use is allowed according to the terms of the BSD license.
-# For details see the accompanying COPYING* file.
-
-# - Try to find QtKeychain
-# Once done this will define
-# QTKEYCHAIN_FOUND - System has QtKeychain
-# QTKEYCHAIN_INCLUDE_DIRS - The QtKeychain include directories
-# QTKEYCHAIN_LIBRARIES - The libraries needed to use QtKeychain
-# QTKEYCHAIN_DEFINITIONS - Compiler switches required for using LibXml2
-
-find_path(QTKEYCHAIN_INCLUDE_DIR
- NAMES
- keychain.h
- PATH_SUFFIXES
- qtkeychain
- )
-
-
-find_library(QTKEYCHAIN_LIBRARY
- NAMES
- qtkeychain
- libqtkeychain
- PATHS
- /usr/lib
- /usr/lib/${CMAKE_ARCH_TRIPLET}
- /usr/local/lib
- /opt/local/lib
- ${CMAKE_LIBRARY_PATH}
- ${CMAKE_INSTALL_PREFIX}/lib
- )
-
-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)
-
-mark_as_advanced(QTKEYCHAIN_INCLUDE_DIR QTKEYCHAIN_LIBRARY)