1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
|
# Doxygen configuration file for generating
# the standard developer kit documentation
# This includes all the libraries header files,
# excluding third parties and license files.
PROJECT_NAME = "Geogram"
PROJECT_NUMBER = "Version @VORPALINE_VERSION@"
PROJECT_BRIEF = "A programming library of geometric algorithms"
@INCLUDE = @CMAKE_SOURCE_DIR@/doc/common.dox
WARN_LOGFILE = @doc_output_dir@/devkit-full.log
# Input files
INPUT = @CMAKE_SOURCE_DIR@/src/lib @CMAKE_SOURCE_DIR@/doc/devkit
FILE_PATTERNS = *.h *.dox
RECURSIVE = YES
TAB_SIZE = 8
EXCLUDE_PATTERNS = */.svn/*
EXCLUDE += @CMAKE_SOURCE_DIR@/src/lib/vorpalib/license
EXCLUDE += @CMAKE_SOURCE_DIR@/src/lib/geogram/third_party
EXCLUDE += @CMAKE_SOURCE_DIR@/src/lib/geogram_gfx/third_party
EXCLUDE += @CMAKE_SOURCE_DIR@/src/lib/third_party
FULL_PATH_NAMES = YES
STRIP_FROM_PATH = @CMAKE_SOURCE_DIR@/src/lib/
STRIP_FROM_INC_PATH = @CMAKE_SOURCE_DIR@/src/lib/
OUTPUT_DIRECTORY = @doc_output_dir@/devkit-full
GENERATE_TAGFILE = @doc_output_dir@/devkit-full.tags
# Symbols to extract
INTERNAL_DOCS = NO
ENABLED_SECTIONS =
EXTRACT_ALL = NO
EXTRACT_PRIVATE = NO
EXTRACT_STATIC = NO
EXTRACT_LOCAL_CLASSES = NO
EXTRACT_ANON_NSPACES = NO
# Generation options
HAVE_DOT = @DOXYGEN_HAVE_DOT@
DOT_PATH = @DOXYGEN_DOT_PATH@
SOURCE_BROWSER = YES
HTML_TIMESTAMP = YES
GENERATE_TREEVIEW = YES
HIDE_UNDOC_RELATIONS = NO
COLLABORATION_GRAPH = NO
TEMPLATE_RELATIONS = NO
REFERENCES_RELATION = NO
CALL_GRAPH = NO
CALLER_GRAPH = NO
INCLUDE_GRAPH = NO
INCLUDED_BY_GRAPH = NO
INTERACTIVE_SVG = YES
DOT_MULTI_TARGETS = YES
|