mkqrc.sh@46a33bdc0b36
mkqrc.sh
Fri, 06 Dec 2013 20:53:36 +0200
- author
- Santeri Piippo <crimsondusk64@gmail.com>
- date
- Fri, 06 Dec 2013 20:53:36 +0200
- changeset 542
- 46a33bdc0b36
- parent 455
-
c5d14d112034
- permissions
- -rwxr-xr-x
- Improved coordinate rounding, replaced the hack with a proper implementation, now rounds properly and works on subfiles as well
#!/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