Fix regex for moc includes when looking for frameworks.
This commit is contained in:
parent
de8cc71e13
commit
35b91ac5c0
|
@ -71,12 +71,12 @@ MACRO (QT4_GET_MOC_FLAGS _moc_flags)
|
||||||
GET_DIRECTORY_PROPERTY(_inc_DIRS INCLUDE_DIRECTORIES)
|
GET_DIRECTORY_PROPERTY(_inc_DIRS INCLUDE_DIRECTORIES)
|
||||||
|
|
||||||
FOREACH(_current ${_inc_DIRS})
|
FOREACH(_current ${_inc_DIRS})
|
||||||
IF("${_current}" MATCHES ".framework/?$")
|
IF("${_current}" MATCHES "\\.framework/?$")
|
||||||
STRING(REGEX REPLACE "/[^/]+.framework" "" framework_path "${_current}")
|
STRING(REGEX REPLACE "/[^/]+\\.framework" "" framework_path "${_current}")
|
||||||
SET(${_moc_flags} ${${_moc_flags}} "-F${framework_path}")
|
SET(${_moc_flags} ${${_moc_flags}} "-F${framework_path}")
|
||||||
ELSE("${_current}" MATCHES ".framework/?$")
|
ELSE("${_current}" MATCHES "\\.framework/?$")
|
||||||
SET(${_moc_flags} ${${_moc_flags}} "-I${_current}")
|
SET(${_moc_flags} ${${_moc_flags}} "-I${_current}")
|
||||||
ENDIF("${_current}" MATCHES ".framework/?$")
|
ENDIF("${_current}" MATCHES "\\.framework/?$")
|
||||||
ENDFOREACH(_current ${_inc_DIRS})
|
ENDFOREACH(_current ${_inc_DIRS})
|
||||||
|
|
||||||
GET_DIRECTORY_PROPERTY(_defines COMPILE_DEFINITIONS)
|
GET_DIRECTORY_PROPERTY(_defines COMPILE_DEFINITIONS)
|
||||||
|
|
Loading…
Reference in New Issue