mkqrc.sh@15e46ea3151f
mkqrc.sh
Sun, 12 Feb 2017 16:02:02 +0200
- author
- Teemu Piippo <teemu@hecknology.net>
- date
- Sun, 12 Feb 2017 16:02:02 +0200
- changeset 1123
- 15e46ea3151f
- parent 455
-
c5d14d112034
- permissions
- -rwxr-xr-x
Reworked iterable enums: they all are enum classes now and the end value is marked with "_End"
#!/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