mkqrc.sh

Sun, 29 Dec 2013 16:25:52 +0200

author
Santeri Piippo <crimsondusk64@gmail.com>
date
Sun, 29 Dec 2013 16:25:52 +0200
changeset 595
b6b39c1721a1
parent 455
c5d14d112034
permissions
-rwxr-xr-x

- fixed: subfile rotation had matrix multiplication done with operands the wrong way around, causing morphing

#!/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

mercurial