mkqrc.sh@f4c029f2a75b
mkqrc.sh
Sun, 07 Jul 2013 23:22:28 +0300
- author
- Santeri Piippo <crimsondusk64@gmail.com>
- date
- Sun, 07 Jul 2013 23:22:28 +0300
- changeset 361
- f4c029f2a75b
- parent 353
-
07b3753baedc
- child 455
-
c5d14d112034
- permissions
- -rwxr-xr-x
fixed: double-clicking an object and editing it that way would not register to history
#!/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