tools/docgen.sh
author koda
Wed, 27 Apr 2016 15:08:43 -0400
changeset 11748 4a68030ee852
parent 11515 4dd77731453b
permissions -rwxr-xr-x
Minor changes to the travis file Reuse TRAVIS_OS_NAME for ios, move the ios checks after all the others, add a new line between sections, drop unneeded search path for osx.

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