mkqrc.sh@e117509e1b51
mkqrc.sh
Sat, 17 May 2014 02:00:02 +0300
- author
- Santeri Piippo <crimsondusk64@gmail.com>
- date
- Sat, 17 May 2014 02:00:02 +0300
- changeset 772
- e117509e1b51
- parent 455
-
c5d14d112034
- permissions
- -rwxr-xr-x
- make pick scenes always use particularly thick lines so that the line picking behavior is relayed to the mouse-over highlight
#!/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