diff options
author | David Faure <faure@kde.org> | 2006-04-12 16:45:04 +0000 |
---|---|---|
committer | David Faure <faure@kde.org> | 2006-04-12 16:45:04 +0000 |
commit | 1b770c6a81663a38476c63b959e5671e519df654 (patch) | |
tree | 075c18dd43bbd3d3b059a8560383cc28cc7441af | |
parent | 387a0c0abdf017075b0369d33a482634af492a04 (diff) | |
download | extra-cmake-modules-1b770c6a81663a38476c63b959e5671e519df654.tar.gz extra-cmake-modules-1b770c6a81663a38476c63b959e5671e519df654.tar.bz2 |
Moved out the 4 values from config.h that depend on the installation prefix,
so that changing the prefix doesn't mean recompiling -all- of kdelibs, only
a few files. One more step towards modular config-foo.h files.
svn path=/trunk/KDE/kdelibs/; revision=529149
-rw-r--r-- | modules/FindQt4.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/FindQt4.cmake b/modules/FindQt4.cmake index 40af6e24..41ab699a 100644 --- a/modules/FindQt4.cmake +++ b/modules/FindQt4.cmake @@ -450,7 +450,7 @@ IF (QT4_QMAKE_FOUND) # WTF? why don't we have frameworks? :P SET(QT_QTTEST_LIBRARY_RELEASE "-L${QT_LIBRARY_DIR} -lQtTest" CACHE STRING "The QtTest library.") - SET(QT_QTTEST_LIBRARY_DEBUG "-L${QT_LIBRARY_DIR} -lQtTest" CACHE STRING "The QtTest library.") + SET(QT_QTTEST_LIBRARY_DEBUG "-L${QT_LIBRARY_DIR} -lQtTest_debug" CACHE STRING "The QtTest library.") MARK_AS_ADVANCED(QT_QT3SUPPORT_LIBRARY QT_QTGUI_LIBRARY ) ELSE (QT_USE_FRAMEWORKS) |