From 7b6d0bb8705de0b816aae5f505cac744beccc501 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9gory=20Soutad=C3=A9?= Date: Sun, 15 Oct 2017 11:36:26 +0200 Subject: [PATCH] Specify moc-qt4 in Makefile to avoid building with Qt5 moc --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 2a5ea41..f87f149 100644 --- a/Makefile +++ b/Makefile @@ -59,10 +59,10 @@ clean: $(CXX) $(CXXFLAGS) -x c++ $< -c -o $@ %.moc : %.hpp - moc -nw $< -o $@ + moc-qt4 -nw $< -o $@ %.moc : %.h - moc -nw $< -o $@ + moc-qt4 -nw $< -o $@ mojito : $(MOCS_OBJS) $(KDCHART_MOCS_OBJS)