mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-23 05:25:50 +03:00
29 lines
1 KiB
CMake
29 lines
1 KiB
CMake
# - 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 qt5keychain/keychain.h)
|
|
|
|
find_library(QTKEYCHAIN_LIBRARY
|
|
NAMES
|
|
qt5keychain
|
|
lib5qtkeychain
|
|
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(Qt5Keychain DEFAULT_MSG
|
|
QTKEYCHAIN_LIBRARY QTKEYCHAIN_INCLUDE_DIR)
|
|
|
|
mark_as_advanced(QTKEYCHAIN_INCLUDE_DIR QTKEYCHAIN_LIBRARY)
|