File indexing completed on 2024-03-24 03:58:43

0001 #!/bin/sh
0002 
0003 # Invoke the extractrc script on all .ui, .rc, and .kcfg files in the sources.
0004 # The results are stored in a pseudo .cpp file to be picked up by xgettext.
0005 lst=`find . -name \*.rc -o -name \*.ui -o -name \*.kcfg`
0006 if [ -n "$lst" ] ; then
0007     $EXTRACTRC $lst >> rc.cpp
0008 fi
0009 
0010 # Run xgettext to extract strings from all source files.
0011 $XGETTEXT `find . -name \*.cpp -o -name \*.h -o -name \*.qml` -o $podir/kio6.pot