* doc/Doxyfile.in (STRIP_FROM_PATH, INPUT, IMAGE_PATH): Remove all paths from the build directory. (EXCLUDE): Add paths to generated documentation and generated unit tests. --- milena/ChangeLog | 9 +++++++++ milena/doc/Doxyfile.in | 26 +++++++++++++++++--------- 2 files changed, 26 insertions(+), 9 deletions(-)
diff --git a/milena/ChangeLog b/milena/ChangeLog index 7ae6d55..b32170e 100644 --- a/milena/ChangeLog +++ b/milena/ChangeLog @@ -1,5 +1,14 @@ 2010-03-08 Roland Levillain roland@lrde.epita.fr
+ Shorten the list of files visited by Doxygen. + + * doc/Doxyfile.in (STRIP_FROM_PATH, INPUT, IMAGE_PATH): + Remove all paths from the build directory. + (EXCLUDE): Add paths to generated documentation and generated unit + tests. + +2010-03-08 Roland Levillain roland@lrde.epita.fr + * apps/graph-morpho/morpho.hh: Help Doxygen compile LaTeX formulas.
2010-03-04 Roland Levillain roland@lrde.epita.fr diff --git a/milena/doc/Doxyfile.in b/milena/doc/Doxyfile.in index 503a696..e8f06cb 100644 --- a/milena/doc/Doxyfile.in +++ b/milena/doc/Doxyfile.in @@ -1,4 +1,4 @@ -# Copyright (C) 2007, 2008, 2009 EPITA Research and Development +# Copyright (C) 2007, 2008, 2009, 2010 EPITA Research and Development # Laboratory (LRDE) # # This file is part of Olena. @@ -31,8 +31,7 @@ ABBREVIATE_BRIEF = ALWAYS_DETAILED_SEC = YES INLINE_INHERITED_MEMB = YES FULL_PATH_NAMES = NO -STRIP_FROM_PATH = @top_srcdir@/milena \ - @top_builddir@/milena +STRIP_FROM_PATH = @top_srcdir@/milena STRIP_FROM_INC_PATH = SHORT_NAMES = YES JAVADOC_AUTOBRIEF = YES @@ -92,17 +91,23 @@ WARN_LOGFILE = #--------------------------------------------------------------------------- # configuration options related to the input files #--------------------------------------------------------------------------- -INPUT = @top_srcdir@/milena \ - @top_builddir@/milena +INPUT = @top_srcdir@/milena FILE_PATTERNS = *.cc \ *.hh \ *.hxx \ *.hcc RECURSIVE = YES EXCLUDE = @top_srcdir@/milena/sandbox \ - @top_srcdir@/milena/mln/core/concept/proxy.hxx \ @top_srcdir@/milena/trash \ - @top_srcdir@/milena/doc/examples/trash + @top_srcdir@/milena/mln/core/concept/proxy.hxx \ + @top_srcdir@/milena/doc/examples/trash \ + @top_srcdir@/milena/doc/user \ + @top_srcdir@/milena/doc/user-refman-html \ + @top_srcdir@/milena/doc/user-refman-latex \ + @top_srcdir@/milena/doc/devel \ + @top_srcdir@/milena/doc/devel-refman-html \ + @top_srcdir@/milena/doc/devel-refman-latex \ + @top_srcdir@/milena/tests/unit_test EXCLUDE_SYMLINKS = YES EXCLUDE_PATTERNS = *spe.hh EXCLUDE_SYMBOLS = @@ -116,8 +121,7 @@ EXAMPLE_PATTERNS = *.cc \ EXAMPLE_RECURSIVE = NO IMAGE_PATH = @top_srcdir@/milena/doc/devel/figures \ @top_srcdir@/milena/doc/img \ - @top_srcdir@/milena/doc/figures \ - @top_builddir@/milena/doc/figures + @top_srcdir@/milena/doc/figures INPUT_FILTER = FILTER_PATTERNS = FILTER_SOURCE_FILES = NO @@ -362,3 +366,7 @@ DOT_CLEANUP = YES # Configuration::additions related to the search engine #--------------------------------------------------------------------------- SEARCHENGINE = YES + +# Local Variables: +# mode: Makefile +# End: