Issue 1317 append to moc flags

This commit is contained in:
Thomas Nagy 2013-05-18 09:48:27 +02:00
parent 174b01bba9
commit 29f80f4aeb
2 changed files with 2 additions and 1 deletions

View File

@ -7,6 +7,7 @@ NEW IN WAF 1.7.11
* Qt defines on windows #1272
* QtDesigner library detection #1315
* Redundant check_dir call causing random uninstall failures #1313
* Append to moc flags instead of replacing them #1317
NEW IN WAF 1.7.10
-----------------

View File

@ -335,7 +335,7 @@ def apply_qt4(self):
lst.append('-' + flag[1:])
else:
lst.append(flag)
self.env['MOC_FLAGS'] = lst
self.env.append_value('MOC_FLAGS', lst)
@extension(*EXT_QT4)
def cxx_hook(self, node):