1#!/bin/sh
2
3# Invoke the extractrc script on all .ui, .rc, and .kcfg files in the sources.
4# The results are stored in a pseudo .cpp file to be picked up by xgettext.
5lst=`find . -name \*.rc -o -name \*.ui -o -name \*.kcfg`
6if [ -n "$lst" ] ; then
7    $EXTRACTRC $lst >> rc.cpp
8fi
9
10# Run xgettext to extract strings from all source files.
11$XGETTEXT `find . -name \*.cpp -o -name \*.h -o -name \*.qml` -o $podir/kio5.pot
12