mkqrc.sh

Sat, 04 May 2013 18:31:03 +0300

author
Santeri Piippo <crimsondusk64@gmail.com>
date
Sat, 04 May 2013 18:31:03 +0300
changeset 160
edcb03f3ef75
parent 158
499286fcbf37
child 174
963697b36118
permissions
-rwxr-xr-x

Mass renaming and cleanup. GLRenderer's and ForgeWindow's members made private. Names of common identifiers shortened, moved logVA to ForgeWindow since it's a GUI-related function (though logf remains under main.cpp for ubiquitous usage)

#!/bin/bash

QRCFILE=ldforge.qrc
printf "" > $QRCFILE

printf "<!DOCTYPE RCC>\n<RCC version=\"1.0\">\n<qresource>\n" >> $QRCFILE

for img in ./icons/*.* ./docs/*.* LICENSE; do
	printf "\t<file>$img</file>\n" >> $QRCFILE
done

printf "</qresource>\n</RCC>\n" >> $QRCFILE

mercurial