[pisa-src] r2309 - trunk/docs/Doxyfile

  • From: Diego Biurrun <diego@xxxxxxxxxx>
  • To: pisa-src@xxxxxxxxxxxxx
  • Date: Mon, 19 Apr 2010 17:04:46 +0200

Author: biurrun
Date: Mon Apr 19 17:04:46 2010
New Revision: 2309

Log:
Use top-level directory as input and let Doxygen find sources recursively.
This avoids the burden of having to update the list of input directories
when the directory layout changes or code comes and goes.

Modified:
   trunk/docs/Doxyfile

Modified: trunk/docs/Doxyfile
==============================================================================
--- trunk/docs/Doxyfile Mon Apr 19 16:43:57 2010        (r2308)
+++ trunk/docs/Doxyfile Mon Apr 19 17:04:46 2010        (r2309)
@@ -513,15 +513,7 @@
 # directories like "/usr/src/myproject". Separate the files or directories
 # with spaces.
 
-INPUT                  = community-operator \
-                         kernel             \
-                         libpisa            \
-                         pairing            \
-                         pisabeacon         \
-                         pisacd             \
-                         pisasd             \
-                         test               \
-                         tools              \
+INPUT                  = .
 
 # 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
@@ -544,7 +536,7 @@
 # should be searched for input files as well. Possible values are YES and NO.
 # If left blank NO is used.
 
-RECURSIVE              = NO
+RECURSIVE              = YES
 
 # The EXCLUDE tag can be used to specify files and/or directories that should
 # excluded from the INPUT source files. This way you can easily exclude a

Other related posts:

  • » [pisa-src] r2309 - trunk/docs/Doxyfile - Diego Biurrun