You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
# Creates KDE-compatible .moc files out of .h files in current directory
|
|
|
|
# .moc files are saved to tqmoc/ subdirectory.
|
|
|
|
# Any additional arguments are directories - ktqmoc will be called for each of them.
|
|
|
|
|
|
|
|
mkdir -p tqmoc
|
|
|
|
tqfind . -maxdepth 1 -name \*.h | while read ; do
|
|
|
|
grep Q_OBJECT $REPLY > /dev/null || continue
|
|
|
|
tqmoc=tqmoc/`echo $REPLY | sed -e "s/\\.h/\\.moc/;s/\\.\\///"`
|
|
|
|
if [ $tqmoc -ot $REPLY ] ; then echo tqmocing $REPLY... ; tqmoc $REPLY -o $tqmoc ; fi
|
|
|
|
done
|
|
|
|
|
|
|
|
pwd=`pwd`
|
|
|
|
while [ $# -gt 0 ] ; do
|
|
|
|
cd $pwd/$1 && ktqmoc
|
|
|
|
cd $pwd
|
|
|
|
shift
|
|
|
|
done
|