Add tool to generate new manuskript.pro file
Signed-off-by: TheJackiMonster <thejackimonster@gmail.com>master
parent
9203e0cc83
commit
035b6222cf
@ -0,0 +1,10 @@
|
||||
#!/bin/bash
|
||||
for FORM in $(find manuskript/ | grep "\.ui$"); do
|
||||
echo "FORMS += ../$FORM"
|
||||
done
|
||||
for SOURCE in $(find manuskript/ | grep "\.py$"); do
|
||||
echo "SOURCES += ../$SOURCE"
|
||||
done
|
||||
for TRANSLATION in $(find i18n/ | grep "\.ts$"); do
|
||||
echo "TRANSLATIONS += $(basename $TRANSLATION)"
|
||||
done
|
Loading…
Reference in New Issue