From 0ff825e0e6fe5fc7238e3964d24779a07cb53518 Mon Sep 17 00:00:00 2001 From: Bent Bisballe Nyeng Date: Wed, 14 May 2014 14:24:34 +0200 Subject: Split miav server and client apart. Port client to Qt4. Replace libraw1994 with libiec61883. Add unit tests for multiplexer and fix some bugs in it. --- tools/MocList | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) (limited to 'tools') diff --git a/tools/MocList b/tools/MocList index b69f49f..369ece4 100755 --- a/tools/MocList +++ b/tools/MocList @@ -1,11 +1,10 @@ # -*- mode: shell-script; sh-shell: bash; sh-indentation: 2 -*- -if grep "#define USE_GUI" ../config.h > /dev/null ; then - if [ "$1" = "cc" ]; then +if [ "$1" = "cc" ]; then grep "Q_OBJECT" *.h | cut -d: -f1 | sed -e 's/^//g;s/\.h/\.moc.cc/g'| xargs echo; - elif [ "$1" = "o" ]; then +elif [ "$1" = "o" ]; then grep "Q_OBJECT" *.h | cut -d: -f1 | sed -e 's/^//g;s/\.h/\.moc.o/g'| xargs echo; - elif [ "$1" = "h" ]; then +elif [ "$1" = "h" ]; then grep "Q_OBJECT" *.h | cut -d: -f1 | cut -d'/' -f3 | xargs echo; - fi fi + -- cgit v1.2.3