mkqrc.sh

Sun, 30 Aug 2015 15:17:28 +0300

author
Teemu Piippo <crimsondusk64@gmail.com>
date
Sun, 30 Aug 2015 15:17:28 +0300
changeset 967
eb586d3e1a6a
parent 455
c5d14d112034
permissions
-rwxr-xr-x

elif -> else if
Removed a bunch of long unused macros
Replaced the countof implementation with the more idiomatic one

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