Don't use $(DEFS) for moc (nw)

This commit is contained in:
balr0g 2015-02-20 13:23:22 -05:00
parent 1cdee288e5
commit 86abb5f822
2 changed files with 2 additions and 2 deletions

View File

@ -728,7 +728,7 @@ endif # OS2
ifndef NO_USE_QTDEBUG
$(OSDOBJ)/%.moc.c: $(OSDSRC)/%.h
$(MOC) $(MOCINCPATH) $(DEFS) $< -o $@
$(MOC) $(MOCINCPATH) $< -o $@
DEBUGOBJS = \
$(OSDOBJ)/modules/debugger/qt/debuggerview.o \

View File

@ -432,7 +432,7 @@ INCPATH += -I$(QT_INSTALL_HEADERS)/QtCore -I$(QT_INSTALL_HEADERS)/QtGui -I$(QT_I
MOC = @moc
$(OSDOBJ)/%.moc.c: $(OSDSRC)/%.h
$(MOC) $(INCPATH) $(DEFS) $< -o $@
$(MOC) $(INCPATH) $< -o $@
OSDOBJS += \
$(OSDOBJ)/modules/debugger/qt/debugqtview.o \