diff options
author | Alexander Neundorf <neundorf@kde.org> | 2009-09-28 20:43:10 +0000 |
---|---|---|
committer | Alexander Neundorf <neundorf@kde.org> | 2009-09-28 20:43:10 +0000 |
commit | 1727d50be1767d0ad511200dabca19cb48bc7fdd (patch) | |
tree | d2124b1d99788c0165a7f2d4985475175da1d5d1 | |
parent | 5baf063f23862551ee974322df7a6d63b4dd221e (diff) | |
download | extra-cmake-modules-1727d50be1767d0ad511200dabca19cb48bc7fdd.tar.gz extra-cmake-modules-1727d50be1767d0ad511200dabca19cb48bc7fdd.tar.bz2 |
QCA2 must provide the header "QtCrypto", QCA1 doesn't seem to provide such a header (i.e. it was found as QCA1 although it was only QCA1)
Alex
CCMAIL: <drf54321@gmail.com>
CCMAIL: <r.scheepmaker@student.utwente.nl>
Please check that it also still finds QCA2 successfully (you have to remove the QCA* variables from CMakeCache.txt for this)
svn path=/trunk/KDE/kdelibs/; revision=1029046
-rw-r--r-- | modules/FindQCA2.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/FindQCA2.cmake b/modules/FindQCA2.cmake index 478105f4..e2d8f2a5 100644 --- a/modules/FindQCA2.cmake +++ b/modules/FindQCA2.cmake @@ -36,7 +36,7 @@ else (QCA2_INCLUDE_DIR AND QCA2_LIBRARIES) HINTS ${PC_QCA2_LIBDIR} ${PC_QCA2_LIBRARY_DIRS} ) - find_path(QCA2_INCLUDE_DIR qca.h + find_path(QCA2_INCLUDE_DIR QtCrypto HINTS ${PC_QCA2_INCLUDEDIR} ${PC_QCA2_INCLUDE_DIRS} PATH_SUFFIXES QtCrypto) |