aboutsummaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorRobin Haberkorn <robin.haberkorn@googlemail.com>2012-05-08 05:13:53 +0200
committerRobin Haberkorn <robin.haberkorn@googlemail.com>2012-05-08 05:13:53 +0200
commita6f821ff833171da62a25ad24fd85bc7834f1961 (patch)
treeb9210fe6c9c9e4eea397026d3fa38d38e01d5ecf /configure.ac
parent8f2799acdbc3049b88758205bd921c7f8697a0ee (diff)
downloadexperiment-player-a6f821ff833171da62a25ad24fd85bc7834f1961.tar.gz
support for opening the HTML manual from the experiment player help menu
URI is configurable (--with-help-uri)
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac8
1 files changed, 8 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index 943dfab..d330e1d 100644
--- a/configure.ac
+++ b/configure.ac
@@ -109,6 +109,14 @@ AC_ARG_WITH(default-ui,
# must be expanded by the Makefiles
AC_SUBST(DEFAULT_UI)
+AC_ARG_WITH(help-uri,
+ AS_HELP_STRING([--with-help-uri=URI],
+ [Specify help (manual) URI [default=file://DOCDIR/experiment-player.html]]),
+ [HELP_URI=$withval], [HELP_URI=file://$docdir/experiment-player.html])
+# NOTE: cannot use AC_DEFINE_UNQUOTED since installation directories
+# must be expanded by the Makefiles
+AC_SUBST(HELP_URI)
+
AC_ARG_ENABLE(doxygen-doc,
AS_HELP_STRING([--enable-doxygen-doc],
[Generate Doxygen documentation [default=no]]),