mkqrc.sh@c57ddcaf1b58
mkqrc.sh
Sat, 21 Dec 2013 02:19:32 +0200
- author
- Santeri Piippo <crimsondusk64@gmail.com>
- date
- Sat, 21 Dec 2013 02:19:32 +0200
- changeset 581
- c57ddcaf1b58
- parent 455
-
c5d14d112034
- permissions
- -rwxr-xr-x
- fixed configuration dialog not accepting values past 99.99 for grid angles
- fixed file loader figuring that a 4-4cyli.dat in a folder called "48" can be used as 4-4cyli.dat. s/ and 48/ folders now checked 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