mkqrc.sh@77f08db90249
mkqrc.sh
Sun, 07 Jul 2013 23:17:17 +0300
- author
- Santeri Piippo <crimsondusk64@gmail.com>
- date
- Sun, 07 Jul 2013 23:17:17 +0300
- changeset 360
- 77f08db90249
- parent 353
-
07b3753baedc
- child 455
-
c5d14d112034
- permissions
- -rwxr-xr-x
when inlining (as an action), reinterpret the inlinees so that there's not any pointer mess-ups
#!/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