File indexing completed on 2024-04-14 14:53:35

0001 #!/bin/sh
0002 
0003 # Extract strings from all source files.
0004 # EXTRACT_TR_STRINGS extracts strings with lupdate and convert them to .pot with
0005 # lconvert.
0006 LIST=`find . \( -path ./drivers/\* -o -path ./src/tools/KDbSimpleCommandLineApp.cpp \) -prune \
0007 -o \( -name \*.cpp -o -name \*.h -o -name \*.ui -o -name \*.qml \) -type f -print`
0008 
0009 $EXTRACT_TR_STRINGS $LIST -o $podir/kdb_qt.pot