mkqrc.sh@23551de3da36
mkqrc.sh
Sun, 10 Jun 2018 12:12:50 +0300
- author
- Teemu Piippo <teemu@hecknology.net>
- date
- Sun, 10 Jun 2018 12:12:50 +0300
- changeset 1395
- 23551de3da36
- parent 455
-
c5d14d112034
- permissions
- -rwxr-xr-x
separated the color button into a new widget
#!/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