mkqrc.sh@e4ad109f33c6
mkqrc.sh
Sun, 20 Jul 2014 05:01:51 +0300
- author
- Teemu Piippo <crimsondusk64@gmail.com>
- date
- Sun, 20 Jul 2014 05:01:51 +0300
- changeset 846
- e4ad109f33c6
- parent 455
-
c5d14d112034
- permissions
- -rwxr-xr-x
- use the untransformed subfile when testing whether a subfile is flat, otherwise it won't be considered flat if the subfile is rotated. or worse...
#!/bin/bash
QRCFILE=ldforge.qrc
FILES=$(echo ./icons/*.* data/*.* LICENSE LICENSE.icons)
printf "" > $QRCFILE
printf "<!DOCTYPE RCC>\n<RCC version=\"1.0\">\n<qresource>\n" >> $QRCFILE
for f in $FILES; do
printf "\t<file>$f</file>\n" >> $QRCFILE
done
printf "</qresource>\n</RCC>\n" >> $QRCFILE