tools/docgen.sh
author unc0rr
Sat, 01 Oct 2016 21:27:05 +0300
changeset 11855 ad435d95ca4b
parent 11515 4dd77731453b
permissions -rwxr-xr-x
- Use sandi instead of dataenc (bugs.debian.org/836686) - Only try to import module from the package being tested (sometimes packages have modules with equal names, so a test for module presence could succeed when you have one package installed instead of another)

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