Browse Source

Doxyfile.in: make doc generation work

Signed-off-by: Brendan Le Foll <brendan.le.foll@intel.com>
Brendan Le Foll 10 years ago
parent
commit
b73841b28b
1 changed files with 5 additions and 7 deletions
  1. 5
    7
      Doxyfile.in

+ 5
- 7
Doxyfile.in View File

@@ -753,9 +753,7 @@ WARN_LOGFILE           =
753 753
 # spaces.
754 754
 # Note: If this tag is empty the current directory is searched.
755 755
 
756
-INPUT                  = @CMAKE_CURRENT_SOURCE_DIR@/src/hmc5883l/hmc5883l.h \
757
-                         @CMAKE_CURRENT_SOURCE_DIR@/src/grove/grove.h \
758
-                         @CMAKE_CURRENT_SOURCE_DIR@/src/lcm1602/lcm1602.h \
756
+INPUT                  = @CMAKE_CURRENT_SOURCE_DIR@/src \
759 757
                          @CMAKE_CURRENT_SOURCE_DIR@/README.md
760 758
 
761 759
 # This tag can be used to specify the character encoding of the source files
@@ -823,7 +821,7 @@ FILE_PATTERNS          = *.c \
823 821
 # be searched for input files as well.
824 822
 # The default value is: NO.
825 823
 
826
-RECURSIVE              = NO
824
+RECURSIVE              = YES
827 825
 
828 826
 # The EXCLUDE tag can be used to specify files and/or directories that should be
829 827
 # excluded from the INPUT source files. This way you can easily exclude a
@@ -832,7 +830,7 @@ RECURSIVE              = NO
832 830
 # Note that relative paths are relative to the directory from which doxygen is
833 831
 # run.
834 832
 
835
-EXCLUDE                = 
833
+EXCLUDE                = @PROJECT_SOURCE_DIR@/src/doxy2swig.py
836 834
 
837 835
 # The EXCLUDE_SYMLINKS tag can be used to select whether or not files or
838 836
 # directories that are symbolic links (a Unix file system feature) are excluded
@@ -865,14 +863,14 @@ EXCLUDE_SYMBOLS        =
865 863
 # that contain example code fragments that are included (see the \include
866 864
 # command).
867 865
 
868
-EXAMPLE_PATH           = 
866
+EXAMPLE_PATH           = @CMAKE_CURRENT_SOURCE_DIR@/examples/
869 867
 
870 868
 # If the value of the EXAMPLE_PATH tag contains directories, you can use the
871 869
 # EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp and
872 870
 # *.h) to filter out the source-files in the directories. If left blank all
873 871
 # files are included.
874 872
 
875
-EXAMPLE_PATTERNS       = *
873
+EXAMPLE_PATTERNS       = *.cxx
876 874
 
877 875
 # If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be
878 876
 # searched for input files to be used with the \include or \dontinclude commands