tools/docgen.sh
author Wuzzy <Wuzzy2@mail.ru>
Sun, 26 Aug 2018 16:51:01 +0200
changeset 13706 dec29ef3ef76
parent 11515 4dd77731453b
permissions -rwxr-xr-x
GameServer: Use consistent formatting of clan chat (compared with engine) It's called "clan chat" now, not "team chat". Also the brackets and text positions were inconsistent with engine.

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