tools/docgen.sh
author Wuzzy <Wuzzy2@mail.ru>
Fri, 04 May 2018 01:39:22 +0200
changeset 13382 03e4d9b5b09c
parent 11520 4dd77731453b
permissions -rwxr-xr-x
Continental supplies: Upside-Down World special now works in cave maps as well In cave maps, the hog is teleported just below the border. A bit of land is erased, too.

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