mkqrc.sh@a62f810ca26f
mkqrc.sh
Sun, 29 Jan 2017 15:18:40 +0200
- author
- Teemu Piippo <teemu@hecknology.net>
- date
- Sun, 29 Jan 2017 15:18:40 +0200
- changeset 1074
- a62f810ca26f
- parent 455
-
c5d14d112034
- permissions
- -rwxr-xr-x
Made the quad→triangles use emplacement. However, now it crashes because of problems in the underlying system (the LDObject constructor shouldn't do anything in regard to the model!)
#!/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