mirror of
https://bitbucket.org/smil3y/kde-extraapps.git
synced 2025-02-24 19:02:53 +00:00
7 lines
199 B
Bash
7 lines
199 B
Bash
#!/bin/sh
|
|
files=`find . -name \*.rc -o -name \*.ui`
|
|
if [ "x$files" != "x" ]; then
|
|
$EXTRACTRC $files >> rc.cpp
|
|
fi
|
|
$XGETTEXT `find . -name \*.cpp` -o $podir/kdevvcsprojectintegration.pot
|
|
rm -f rc.cpp
|