mkqrc.sh@b9307871cf10
mkqrc.sh
Sun, 08 Sep 2013 21:57:23 +0300
- author
- Teemu Piippo <crimsondusk64@gmail.com>
- date
- Sun, 08 Sep 2013 21:57:23 +0300
- changeset 27
- b9307871cf10
- parent 19
-
c9b6dd9dd4cd
- child 30
-
6b82f6a3ad53
- permissions
- -rwxr-xr-x
clear the rows of the version editor properly when clearing versions; don't save the config when closing the version editor since then changes will apply even if user presses cancel in the main config box
#!/bin/bash
QRCFILE=zandemo.qrc
FILES=$(echo ./icons/*.* LICENSE)
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