diff options
author | Petre Eftime <[email protected]> | 2016-01-15 14:33:48 +0200 |
---|---|---|
committer | Petre Eftime <[email protected]> | 2016-01-15 14:33:48 +0200 |
commit | 811903e034495e222df362bbe432d3a5ba123973 (patch) | |
tree | 376cfdb1bdaa3790a7a39f10ced43073c8334adb /Doxyfile.cpp.in | |
parent | e75dba3b473aa63ac595b2ce278ab72b687ac6e3 (diff) |
Use correct paths in Doxyfiles and add README.md as main page
Signed-off-by: Petre Eftime <[email protected]>
Diffstat (limited to 'Doxyfile.cpp.in')
-rw-r--r-- | Doxyfile.cpp.in | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/Doxyfile.cpp.in b/Doxyfile.cpp.in index cd0c6aed..ef7d9c45 100644 --- a/Doxyfile.cpp.in +++ b/Doxyfile.cpp.in @@ -758,7 +758,8 @@ WARN_LOGFILE = # spaces. # Note: If this tag is empty the current directory is searched. -INPUT = api/ +INPUT = @CMAKE_CURRENT_SOURCE_DIR@/api/ \ + @CMAKE_CURRENT_SOURCE_DIR@/README.md # This tag can be used to specify the character encoding of the source files # that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses @@ -778,7 +779,7 @@ INPUT_ENCODING = UTF-8 # *.md, *.mm, *.dox, *.py, *.f90, *.f, *.for, *.tcl, *.vhd, *.vhdl, *.ucf, # *.qsf, *.as and *.js. -FILE_PATTERNS = *.hpp +FILE_PATTERNS = *.hpp *.md # The RECURSIVE tag can be used to specify whether or not subdirectories should # be searched for input files as well. @@ -826,14 +827,14 @@ EXCLUDE_SYMBOLS = # that contain example code fragments that are included (see the \include # command). -EXAMPLE_PATH = +EXAMPLE_PATH = @CMAKE_CURRENT_SOURCE_DIR/examples/ # If the value of the EXAMPLE_PATH tag contains directories, you can use the # EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp and # *.h) to filter out the source-files in the directories. If left blank all # files are included. -EXAMPLE_PATTERNS = +EXAMPLE_PATTERNS = *.cpp # If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be # searched for input files to be used with the \include or \dontinclude commands @@ -894,7 +895,7 @@ FILTER_SOURCE_PATTERNS = # (index.html). This can be useful if you have a project on for instance GitHub # and want to reuse the introduction page also for the doxygen output. -USE_MDFILE_AS_MAINPAGE = +USE_MDFILE_AS_MAINPAGE = @CMAKE_CURRENT_SOURCE_DIR@/README.md #--------------------------------------------------------------------------- # Configuration options related to source browsing |