mkqrc.sh@afa691788bdb
mkqrc.sh
Tue, 22 Oct 2013 13:40:16 +0300
- author
- Santeri Piippo <crimsondusk64@gmail.com>
- date
- Tue, 22 Oct 2013 13:40:16 +0300
- changeset 522
- afa691788bdb
- parent 455
-
c5d14d112034
- permissions
- -rwxr-xr-x
- migrated selection from ForgeWindow to individual LDFiles. Should've done this long ago.
- added an operator== for matrix to make stuff actually compile
#!/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