diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2012-05-12 14:45:56 +0200 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2012-05-12 14:45:56 +0200 |
commit | fb95c8298e5032cfc4173c7c70b0f9fa2f344a36 (patch) | |
tree | 9dcc7e585b74737309e1db50cbb8c71850e8252d /configure.ac | |
parent | f3b5742aa4bd1f33753abab1542f2e48345cde6f (diff) | |
download | experiment-player-fb95c8298e5032cfc4173c7c70b0f9fa2f344a36.tar.gz |
inclusion of developer documentation in Doxygen docs is configurable
* added --enable-doxygen-extract-private site-config option
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 725ecaf..19bd684 100644 --- a/configure.ac +++ b/configure.ac @@ -147,6 +147,12 @@ if [[ $doxygen_doc = yes -a x$DOXYGEN = x ]]; then fi AM_CONDITIONAL(BUILD_DOXYGEN, test $doxygen_doc = yes) +AC_ARG_ENABLE(doxygen-extract-private, + AS_HELP_STRING([--enable-doxygen-extract-private], + [Include private and static members in Doxygen documentation [default=no]]), + [DOXYGEN_EXTRACT_PRIVATE=${enableval^^}], [DOXYGEN_EXTRACT_PRIVATE=NO]) +AC_SUBST(DOXYGEN_EXTRACT_PRIVATE) + AC_ARG_ENABLE(html-doc, AS_HELP_STRING([--enable-html-doc], [Generate HTML documentation [default=yes]]), |