tools/docgen.sh
author Wuzzy <almikes@aol.com>
Tue, 15 Nov 2016 01:49:36 +0100
changeset 11887 bbd0cb0564c5
parent 11520 4dd77731453b
permissions -rwxr-xr-x
Simplify the hat format for unanimated hats For simple hats which are not animated, a single 32×32 image is now enough. For simple clan hats, use 64×32 with the color overlay at the right.

#!/bin/sh


if [ -d QTfrontend ]; then
	cd QTfrontend
else
	if [ -d ../QTfrontend ]; then
		cd ../QTfrontend
	else
		echo 'abort: Directory "QTfrontend" not found!' >&2
		exit 1
	fi
fi

if [ -z "$1" ]; then
	OUTPUT_DIRECTORY="../doc/QTfrontend"
else
	OUTPUT_DIRECTORY="$1"
fi

echo "Creating documentation for Qt-Frontend in $OUTPUT_DIRECTORY ..."

if [ $(which hg) ]; then

branch=$(hg identify -b)
rev=$(hg identify -rdefault -i)

export PROJECT_NUMBER="${branch} branch, ${rev}"
export OUTPUT_DIRECTORY

fi

doxygen
exit $?