Pass the <include> and <define> feature to the Qt4's moc tool.

Patch from Jurgen Hunold.


[SVN r30771]
This commit is contained in:
Vladimir Prus 2005-09-01 10:26:14 +00:00
parent 9a39b7ab14
commit c2cff3f6a4

View File

@ -211,10 +211,15 @@ rule directory
return $(.prefix) ;
}
# Get <include> and <defines> from current toolset
flags qt4.moc INCLUDES <include> ;
flags qt4.moc DEFINES <define> ;
# Processes headers to create Qt MetaObject information
# Qt4-moc has its c++-parser, so pass INCLUDES and DEFINES.
actions moc
{
$(.prefix)/bin/moc -I$(.prefix)/include -I$(.prefix)/include/QtCore -f $(>) -o $(<)
$(.prefix)/bin/moc -I$(INCLUDES) -I$(DEFINES) -f $(>) -o $(<)
}
# Generates source files from resource files