mkqrc.sh@403affd33c6e
mkqrc.sh
Sun, 27 Jul 2014 15:13:42 +0300
- author
- Teemu Piippo <crimsondusk64@gmail.com>
- date
- Sun, 27 Jul 2014 15:13:42 +0300
- changeset 854
- 403affd33c6e
- parent 455
-
c5d14d112034
- permissions
- -rwxr-xr-x
- fixed: changing the document of a subfile wasn't recorded into history properly
#!/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