mirror of
https://bitbucket.org/smil3y/kde-playground.git
synced 2025-02-24 02:42:51 +00:00
10 lines
420 B
Bash
Executable file
10 lines
420 B
Bash
Executable file
#!/bin/sh
|
|
|
|
$EXTRACTRC \
|
|
$( find . \
|
|
-name '*.rc' -a ! -name 'headers.rc' -a ! -name 'filters.rc' \
|
|
-o -name '*.ui' \
|
|
-o -name '*.kcfg' \
|
|
) >> rc.cpp || exit 1
|
|
|
|
$XGETTEXT $(find . -name '*.cpp' -o -name '*.h') -o $podir/knode.pot
|