Add tool to generate new manuskript.pro file

Signed-off-by: TheJackiMonster <thejackimonster@gmail.com>
master
TheJackiMonster 3 months ago
parent 9203e0cc83
commit 035b6222cf
No known key found for this signature in database
GPG Key ID: D850A5F772E880F9

@ -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…
Cancel
Save