tools/docgen.sh
author antonc27 <antonc27@mail.ru>
Sat, 08 Aug 2015 21:04:47 +0200
branchios-revival
changeset 11082 438d0f49a8d6
parent 10667 5bd2fa61f25b
child 11515 4dd77731453b
permissions -rwxr-xr-x
- fpc updated to 3.1.1 - Build scripts updated Note1: fpc must be compiled from sources before! Full instructions here: http://blog.naver.com/simonsayz/220305479793 Note2: Build script for a moment worked only for iPhone simulator 8.x and for new arch (like iPhone 6 or iPad Air)

#!/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)

#branchurl="<a href=http://code.google.com/p/hedgewars/source/list?name=${branch}>${branch}</a>"
#revurl="<a href=http://code.google.com/p/hedgewars/source/detail?r=${rev}>${rev}</a>"

branchurl="$branch"
revurl="$rev"

export PROJECT_NUMBER="${branchurl} branch, ${revurl}"
export OUTPUT_DIRECTORY

fi

doxygen
exit $?