ENH: Also find .moc files if there are spaces between # and include.

Fixes #8433.
This commit is contained in:
Clinton Stimpson 2009-01-29 13:26:01 -05:00
parent 4b5cabed0e
commit f9710e22ec
1 changed files with 1 additions and 1 deletions

View File

@ -1131,7 +1131,7 @@ IF (QT4_QMAKE_FOUND)
GET_FILENAME_COMPONENT(_abs_PATH ${_abs_FILE} PATH)
STRING(REGEX MATCHALL "#include +[^ ]+\\.moc[\">]" _match "${_contents}")
STRING(REGEX MATCHALL "# *include +[^ ]+\\.moc[\">]" _match "${_contents}")
IF(_match)
FOREACH (_current_MOC_INC ${_match})
STRING(REGEX MATCH "[^ <\"]+\\.moc" _current_MOC "${_current_MOC_INC}")