diff options
author | Magnus Lundborg <lundborg.magnus@gmail.com> | 2014-10-03 09:18:14 (GMT) |
---|---|---|
committer | Magnus Lundborg <lundborg.magnus@gmail.com> | 2014-10-03 09:18:14 (GMT) |
commit | d77479a96a9ee98a912802a4ac314cb965970c03 (patch) | |
tree | 8b727c47c3593b118c0a75c2d3f995c95a059aa4 | |
parent | 4cf1bd26526233ea5fab7c3b789d2141277b38cc (diff) |
Fix input file for generating documentation.
The include path was not correct - no documentation was generated.
Do not set the version number specifically in doxyfile.in -
use the variables that have already been set.
Change-Id: Ie5035c39e68c6df2cff17e9427cb8081396bc6a9
-rw-r--r-- | Doxyfile.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doxyfile.in b/Doxyfile.in index 03ba553..27ca707 100644 --- a/Doxyfile.in +++ b/Doxyfile.in @@ -32,7 +32,7 @@ PROJECT_NAME = "TNG API" # This could be handy for archiving the generated documentation or # if some version control system is used. -PROJECT_NUMBER = "1.4" +PROJECT_NUMBER = "@TNG_IO_VERSION@" # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer @@ -626,7 +626,7 @@ WARN_LOGFILE = # directories like "/usr/src/myproject". Separate the files or directories # with spaces. -INPUT = @PROJECT_SOURCE_DIR@/src/lib @PROJECT_SOURCE_DIR@/include +INPUT = @PROJECT_SOURCE_DIR@/src/lib @PROJECT_SOURCE_DIR@/include/tng/ # This tag can be used to specify the character encoding of the source files # that doxygen parses. Internally doxygen uses the UTF-8 encoding, which is @@ -658,7 +658,7 @@ RECURSIVE = NO # Note that relative paths are relative to the directory from which doxygen is # run. -EXCLUDE = @PROJECT_SOURCE_DIR@/src/lib/md5.c @PROJECT_SOURCE_DIR@/include/tng/md5.h @PROJECT_SOURCE_DIR@/include/tng/tng_io.hpp @PROJECT_SOURCE_DIR@/src/lib/tng_io.c +EXCLUDE = @PROJECT_SOURCE_DIR@/src/lib/md5.c @PROJECT_SOURCE_DIR@/include/tng/md5.h @PROJECT_SOURCE_DIR@/include/tng/tng_io.hpp @PROJECT_SOURCE_DIR@/src/lib/tng_io.c @PROJECT_SOURCE_DIR@/src/lib/tng_io_fortran.c # The EXCLUDE_SYMLINKS tag can be used to select whether or not files or # directories that are symbolic links (a Unix file system feature) are excluded |