mkqrc.sh

Sun, 30 Aug 2015 15:01:10 +0300

author
Teemu Piippo <crimsondusk64@gmail.com>
date
Sun, 30 Aug 2015 15:01:10 +0300
changeset 966
a834e43a57da
parent 455
c5d14d112034
permissions
-rwxr-xr-x

Replaced Min/Max/Clamp/Abs with use of Qt versions of them.
Renamed the other utility functions.

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