blob: de8555116ad2d5155dd076f67170324906ecb300 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
# - Try to find QCA2 (Qt Cryptography Architecture 2)
# Once done this will define
#
# QCA2_FOUND - system has QCA2
# QCA2_INCLUDE_DIR - the QCA2 include directory
# QCA2_LIBRARIES - the libraries needed to use QCA2
# QCA2_DEFINITIONS - Compiler switches required for using QCA2
#
# use pkg-config to get the directories and then use these values
# in the FIND_PATH() and FIND_LIBRARY() calls
#
# Copyright (c) 2006, Michael Larouche, <michael.larouche@kdemail.net>
#
# Redistribution and use is allowed according to the terms of the BSD license.
# For details see the accompanying COPYING-CMAKE-SCRIPTS file.
if (QCA2_INCLUDE_DIR AND QCA2_LIBRARIES)
# in cache already
set(QCA2_FOUND TRUE)
else (QCA2_INCLUDE_DIR AND QCA2_LIBRARIES)
INCLUDE(UsePkgConfig)
IF (NOT WIN32)
PKGCONFIG(qca QCA2_INCLUDE_DIR _Qca2LinkDir _Qca2LinkFlags _Qca2Cflags)
set(QCA2_DEFINITIONS ${_Qca2Cflags})
ELSE (NOT WIN32)
FIND_PATH(QCA2_INCLUDE_DIR QtCrypto
PATHS
${_Qca2IncDir}
)
ENDIF (NOT WIN32)
FIND_LIBRARY(QCA2_LIBRARIES NAMES qca
PATHS
${_Qca2LinkDir}
NO_DEFAULT_PATH
)
if (QCA2_INCLUDE_DIR AND QCA2_LIBRARIES)
set(QCA2_FOUND TRUE)
else (QCA2_INCLUDE_DIR AND QCA2_LIBRARIES)
if (NOT QCA2_INCLUDE_DIR)
message(STATUS "Could NOT find QCA2 includes in ${_Qca2IncDir}")
endif (NOT QCA2_INCLUDE_DIR)
if (NOT QCA2_LIBRARIES)
message(STATUS "Could NOT find QCA2 libraries in ${_Qca2LinkDir}")
endif (NOT QCA2_LIBRARIES)
if (QCA2_FIND_REQUIRED)
message(SEND_ERROR "Could NOT find QCA2")
endif (QCA2_FIND_REQUIRED)
endif (QCA2_INCLUDE_DIR AND QCA2_LIBRARIES)
MARK_AS_ADVANCED(QCA2_INCLUDE_DIR QCA2_LIBRARIES)
endif (QCA2_INCLUDE_DIR AND QCA2_LIBRARIES)
|