Merge pull request #107 from siduction-upstream/master
[quassel.git] / cmake / FindQCA2-QT5.cmake
1 # - Try to find QCA2 (Qt Cryptography Architecture 2) for QT5
2 # Once done this will define
3 #
4 #  QCA2-QT5_FOUND - system has QCA2-QT5
5 #  QCA2-QT5_INCLUDE_DIR - the QCA2-QT5 include directory
6 #  QCA2-QT5_LIBRARIES - the libraries needed to use QCA2-QT5
7 #  QCA2-QT5_DEFINITIONS - Compiler switches required for using QCA2-QT5
8 #
9 # use pkg-config to get the directories and then use these values
10 # in the FIND_PATH() and FIND_LIBRARY() calls
11
12 # Copyright (c) 2006, Michael Larouche, <michael.larouche@kdemail.net>
13 #
14 # Redistribution and use is allowed according to the terms of the BSD license.
15 # For details see the accompanying COPYING-CMAKE-SCRIPTS file.
16
17 include(FindLibraryWithDebug)
18
19 if (QCA2-QT5_INCLUDE_DIR AND QCA2-QT5_LIBRARIES)
20
21   # in cache already
22   set(QCA2-QT5_FOUND TRUE)
23
24 else (QCA2-QT5_INCLUDE_DIR AND QCA2-QT5_LIBRARIES)
25
26
27   if (NOT WIN32)
28     find_package(PkgConfig)
29     pkg_check_modules(PC_QCA2-QT5 QUIET qca2-qt5)
30     set(QCA2-QT5_DEFINITIONS ${PC_QCA2-QT5_CFLAGS_OTHER})
31   endif (NOT WIN32)
32
33   find_library_with_debug(QCA2-QT5_LIBRARIES
34                   WIN32_DEBUG_POSTFIX d
35                   NAMES qca-qt5
36                   HINTS ${PC_QCA2-QT5_LIBDIR} ${PC_QCA2-QT5_LIBRARY_DIRS}
37                   )
38
39   find_path(QCA2-QT5_INCLUDE_DIR QtCrypto
40             HINTS ${PC_QCA2-QT5_INCLUDEDIR} ${PC_QCA2-QT5_INCLUDE_DIRS}
41             PATH_SUFFIXES QtCrypto)
42
43   include(FindPackageHandleStandardArgs)
44   find_package_handle_standard_args(QCA2-QT5 DEFAULT_MSG QCA2-QT5_LIBRARIES QCA2-QT5_INCLUDE_DIR)
45
46   mark_as_advanced(QCA2-QT5_INCLUDE_DIR QCA2-QT5_LIBRARIES)
47
48 endif (QCA2-QT5_INCLUDE_DIR AND QCA2-QT5_LIBRARIES)