mkqrc.sh@024cbc902e75
mkqrc.sh
Sun, 04 Oct 2015 04:27:38 +0300
- author
- Teemu Piippo <crimsondusk64@gmail.com>
- date
- Sun, 04 Oct 2015 04:27:38 +0300
- changeset 1001
- 024cbc902e75
- parent 455
-
c5d14d112034
- permissions
- -rwxr-xr-x
Added some pretty pics that I left out of the previous commit.
I seriously need to make a Mercurial hook to warn me if I'm going to commit with unignored, untracked files lying around..
#!/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