ENH: fix if

This commit is contained in:
Bill Hoffman 2008-03-24 15:40:52 -04:00
parent dc108e0dfc
commit 1727e6d932
1 changed files with 1 additions and 1 deletions

View File

@ -1511,7 +1511,7 @@ IF (QT4_QMAKE_FOUND)
# Qt 4.2+ use AppKit # Qt 4.2+ use AppKit
IF(found_qt_minor_vers GREATER 1) IF(found_qt_minor_vers GREATER 1)
SET(QT_QTGUI_LIB_DEPENDENCIES ${QT_QTGUI_LIB_DEPENDENCIES} "-framework AppKit") SET(QT_QTGUI_LIB_DEPENDENCIES ${QT_QTGUI_LIB_DEPENDENCIES} "-framework AppKit")
ENDIF(found_qt_minor_vers LESS 1) ENDIF(found_qt_minor_vers GREATER 1)
SET(QT_QTCORE_LIB_DEPENDENCIES ${QT_QTCORE_LIB_DEPENDENCIES} "-framework ApplicationServices") SET(QT_QTCORE_LIB_DEPENDENCIES ${QT_QTCORE_LIB_DEPENDENCIES} "-framework ApplicationServices")
ENDIF(Q_WS_MAC) ENDIF(Q_WS_MAC)