mkqrc.sh@10939452bf86
mkqrc.sh
Wed, 18 Dec 2013 23:38:45 +0200
- author
- Santeri Piippo <crimsondusk64@gmail.com>
- date
- Wed, 18 Dec 2013 23:38:45 +0200
- changeset 563
- 10939452bf86
- parent 455
-
c5d14d112034
- permissions
- -rwxr-xr-x
- made history ignore file loading and undo/redo calls instead of having hard-coded ignore on the actions, this will probably save a lot of hair
#!/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