doc/Doxyfile.in
changeset 1339 26a88d12d1a6
parent 1308 0274efa2222f
child 1347 c0f6f251e893
equal deleted inserted replaced
1:bf1108c37bdd 2:1accb4b70227
   113 # only done if one of the specified strings matches the left-hand part of 
   113 # only done if one of the specified strings matches the left-hand part of 
   114 # the path. The tag can be used to show relative paths in the file list. 
   114 # the path. The tag can be used to show relative paths in the file list. 
   115 # If left blank the directory from which doxygen is run is used as the 
   115 # If left blank the directory from which doxygen is run is used as the 
   116 # path to strip.
   116 # path to strip.
   117 
   117 
   118 STRIP_FROM_PATH        = ../src
   118 STRIP_FROM_PATH        = @abs_top_srcdir@/src
   119 
   119 
   120 # The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of 
   120 # The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of 
   121 # the path mentioned in the documentation of a class, which tells 
   121 # the path mentioned in the documentation of a class, which tells 
   122 # the reader which header file to include in order to use a class. 
   122 # the reader which header file to include in order to use a class. 
   123 # If left blank only the name of the header file containing the class 
   123 # If left blank only the name of the header file containing the class 
   124 # definition is used. Otherwise one should specify the include paths that 
   124 # definition is used. Otherwise one should specify the include paths that 
   125 # are normally passed to the compiler using the -I flag.
   125 # are normally passed to the compiler using the -I flag.
   126 
   126 
   127 STRIP_FROM_INC_PATH    = ../src
   127 STRIP_FROM_INC_PATH    = @abs_top_srcdir@/src
   128 
   128 
   129 # If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter 
   129 # If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter 
   130 # (but less readable) file names. This can be useful is your file systems 
   130 # (but less readable) file names. This can be useful is your file systems 
   131 # doesn't support long names like on DOS, Mac, or CD-ROM.
   131 # doesn't support long names like on DOS, Mac, or CD-ROM.
   132 
   132 
   448 # The INPUT tag can be used to specify the files and/or directories that contain 
   448 # The INPUT tag can be used to specify the files and/or directories that contain 
   449 # documented source files. You may enter file names like "myfile.cpp" or 
   449 # documented source files. You may enter file names like "myfile.cpp" or 
   450 # directories like "/usr/src/myproject". Separate the files or directories 
   450 # directories like "/usr/src/myproject". Separate the files or directories 
   451 # with spaces.
   451 # with spaces.
   452 
   452 
   453 INPUT                  = mainpage.dox \
   453 INPUT                  = @abs_top_srcdir@/doc \
   454                          getstart.dox \
   454                          @abs_top_srcdir@/src/lemon \
   455                          quicktour.dox \
   455                          @abs_top_srcdir@/src/lemon/concept \
   456                          demoprograms.dox \
   456                          @abs_top_srcdir@/src/demo \
   457                          graphs.dox \
   457                          @abs_top_srcdir@/src/test/test_tools.h
   458                          undir_graphs.dox \
       
   459                          named-param.dox \
       
   460                          maps.dox \
       
   461                          coding_style.dox \
       
   462                          groups.dox \
       
   463                          namespaces.dox \
       
   464                          license.dox \
       
   465                          developers_interface.dox \
       
   466                          graph_io.dox \
       
   467                          dirs.dox \
       
   468                          gwrappers.dox \
       
   469                          ../src/lemon \
       
   470                          ../src/lemon/concept \
       
   471                          ../src/demo \
       
   472                          ../src/test/test_tools.h
       
   473 
   458 
   474 # If the value of the INPUT tag contains directories, you can use the 
   459 # If the value of the INPUT tag contains directories, you can use the 
   475 # FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp 
   460 # FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp 
   476 # and *.h) to filter out the source-files in the directories. If left 
   461 # and *.h) to filter out the source-files in the directories. If left 
   477 # blank the following patterns are tested: 
   462 # blank the following patterns are tested: 
   478 # *.c *.cc *.cxx *.cpp *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh *.hxx 
   463 # *.c *.cc *.cxx *.cpp *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh *.hxx 
   479 # *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm
   464 # *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm
   480 
   465 
   481 FILE_PATTERNS          = 
   466 FILE_PATTERNS          = *.h *.cc *.dox
   482 
   467 
   483 # The RECURSIVE tag can be used to turn specify whether or not subdirectories 
   468 # The RECURSIVE tag can be used to turn specify whether or not subdirectories 
   484 # should be searched for input files as well. Possible values are YES and NO. 
   469 # should be searched for input files as well. Possible values are YES and NO. 
   485 # If left blank NO is used.
   470 # If left blank NO is used.
   486 
   471