diff options
author | Marijn Kruisselbrink <m.kruisselbrink@student.tue.nl> | 2006-06-20 12:50:03 +0000 |
---|---|---|
committer | Marijn Kruisselbrink <m.kruisselbrink@student.tue.nl> | 2006-06-20 12:50:03 +0000 |
commit | 9193f36cd22756ad1d0f8e65931f0363a20fb9d0 (patch) | |
tree | 98f9a8b795aa38e031e6a27b52bd1c7f3c2cb97e /modules | |
parent | a695f0c535780b0c91d70c82364d8c6b2e3dc5f0 (diff) | |
download | extra-cmake-modules-9193f36cd22756ad1d0f8e65931f0363a20fb9d0.tar.gz extra-cmake-modules-9193f36cd22756ad1d0f8e65931f0363a20fb9d0.tar.bz2 |
Fix compilation on OSX: QtUiTools also doesn't come as a framework.
svn path=/trunk/KDE/kdelibs/; revision=553216
Diffstat (limited to 'modules')
-rw-r--r-- | modules/FindQt4.cmake | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/FindQt4.cmake b/modules/FindQt4.cmake index 6fdea59e..95cd5578 100644 --- a/modules/FindQt4.cmake +++ b/modules/FindQt4.cmake @@ -495,11 +495,11 @@ IF (QT4_QMAKE_FOUND) SET(QT_QTXML_LIBRARY_DEBUG "-framework QtXml" CACHE STRING "The QtXml library.") SET(QT_QTSVG_LIBRARY_RELEASE "-framework QtSvg" CACHE STRING "The QtSvg library.") SET(QT_QTSVG_LIBRARY_DEBUG "-framework QtSvg" CACHE STRING "The QtSvg library.") - SET(QT_QTUITOOLS_LIBRARY_RELEASE "-framework QtUiTools" CACHE STRING "The QtUiTools library.") - SET(QT_QTUITOOLS_LIBRARY_DEBUG "-framework QtUiTools" CACHE STRING "The QtUiTools library.") # WTF? why don't we have frameworks? :P + SET(QT_QTUITOOLS_LIBRARY_RELEASE "-L${QT_LIBRARY_DIR} -lQtUiTools" CACHE STRING "The QtUiTools library.") + SET(QT_QTUITOOLS_LIBRARY_DEBUG "-L${QT_LIBRARY_DIR} -lQtUiTools" CACHE STRING "The QtUiTools library.") 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_debug" CACHE STRING "The QtTest library.") MARK_AS_ADVANCED(QT_QT3SUPPORT_LIBRARY QT_QTGUI_LIBRARY ) |