diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2012-05-08 05:13:53 +0200 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2012-05-08 05:13:53 +0200 |
commit | a6f821ff833171da62a25ad24fd85bc7834f1961 (patch) | |
tree | b9210fe6c9c9e4eea397026d3fa38d38e01d5ecf /configure.ac | |
parent | 8f2799acdbc3049b88758205bd921c7f8697a0ee (diff) | |
download | experiment-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.ac | 8 |
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]]), |