diff options
author | Alexander Neundorf <neundorf@kde.org> | 2008-06-06 09:11:58 +0000 |
---|---|---|
committer | Alexander Neundorf <neundorf@kde.org> | 2008-06-06 09:11:58 +0000 |
commit | 30ab610b893a9c90b9c46a1305ceb7b1dd125712 (patch) | |
tree | ce20c7bd22c2d2c78c93cb079678df5484900b9b /modules | |
parent | a12676439f9fd2a3bb672b6e53cc124d53b96028 (diff) | |
download | extra-cmake-modules-30ab610b893a9c90b9c46a1305ceb7b1dd125712.tar.gz extra-cmake-modules-30ab610b893a9c90b9c46a1305ceb7b1dd125712.tar.bz2 |
-no space necessary between -F and the directory
Alex
svn path=/trunk/KDE/kdelibs/; revision=817549
Diffstat (limited to 'modules')
-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 90a3fc17..797bd972 100644 --- a/modules/FindQt4.cmake +++ b/modules/FindQt4.cmake @@ -1137,7 +1137,7 @@ IF (QT4_QMAKE_FOUND) # if Qt is installed only as framework, add -F /library/Frameworks to the moc arguments # otherwise moc can't find the headers in the framework include dirs IF(APPLE AND "${QT_QTCORE_INCLUDE_DIR}" MATCHES "/Library/Frameworks/") - SET(${_moc_INC_DIRS} ${${_moc_INC_DIRS}} "-F /Library/Frameworks") + SET(${_moc_INC_DIRS} ${${_moc_INC_DIRS}} "-F/Library/Frameworks") ENDIF(APPLE AND "${QT_QTCORE_INCLUDE_DIR}" MATCHES "/Library/Frameworks/") ENDMACRO(QT4_GET_MOC_INC_DIRS) |