Changeset - 0a5b5b4c20c8
[Not reviewed]
1 1 2
Jan Kaluza - 13 years ago 2012-08-20 13:34:58
hanzz.k@gmail.com
Moved current docs to docs/api
3 files changed with 6 insertions and 5 deletions:
0 comments (0 inline, 0 general)
docs/CMakeLists.txt
Show inline comments
 
configure_file(${CMAKE_CURRENT_SOURCE_DIR}/Doxyfile.in ${CMAKE_CURRENT_BINARY_DIR}/Doxyfile @ONLY)
 
add_custom_target(docs doxygen ${CMAKE_CURRENT_BINARY_DIR}/Doxyfile WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} COMMENT "Generating API documentation with Doxygen" VERBATIM)
 
ADD_SUBDIRECTORY(api)
docs/api/CMakeLists.txt
Show inline comments
 
new file 100644
 
configure_file(${CMAKE_CURRENT_SOURCE_DIR}/Doxyfile.in ${CMAKE_CURRENT_BINARY_DIR}/Doxyfile @ONLY)
 
add_custom_target(docs doxygen ${CMAKE_CURRENT_BINARY_DIR}/Doxyfile WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} COMMENT "Generating API documentation with Doxygen" VERBATIM)
docs/api/Doxyfile.in
Show inline comments
 
file renamed from docs/Doxyfile.in to docs/api/Doxyfile.in
 
@@ -35,13 +35,13 @@ PROJECT_NUMBER         = "@PROJECT_VERSION@"
 

	
 
# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) 
 
# base path where the generated documentation will be put. 
 
# If a relative path is entered, it will be relative to the location 
 
# where doxygen was started. If left blank the current directory will be used.
 

	
 
OUTPUT_DIRECTORY       = @CMAKE_CURRENT_SOURCE_DIR@/../docs/html
 
OUTPUT_DIRECTORY       = @CMAKE_CURRENT_SOURCE_DIR@/../../docs/api/html
 

	
 
# If the CREATE_SUBDIRS tag is set to YES, then doxygen will create 
 
# 4096 sub-directories (in 2 levels) under the output directory of each output 
 
# format and will distribute the generated files over these directories. 
 
# Enabling this option can be useful when feeding doxygen a huge amount of 
 
# source files, where putting all generated files in the same directory would 
 
@@ -561,13 +561,13 @@ WARN_LOGFILE           =
 

	
 
# The INPUT tag can be used to specify the files and/or directories that contain 
 
# documented source files. You may enter file names like "myfile.cpp" or 
 
# directories like "/usr/src/myproject". Separate the files or directories 
 
# with spaces.
 

	
 
INPUT                  = @CMAKE_CURRENT_SOURCE_DIR@/../include/transport/
 
INPUT                  = @CMAKE_CURRENT_SOURCE_DIR@/../../include/transport/
 

	
 
# 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 
 
# also the default input encoding. Doxygen uses libiconv (or the iconv built 
 
# into libc) for the transcoding. See http://www.gnu.org/software/libiconv for 
 
# the list of possible encodings.
 
@@ -760,13 +760,13 @@ IGNORE_PREFIX          =
 
GENERATE_HTML          = YES
 

	
 
# The HTML_OUTPUT tag is used to specify where the HTML docs will be put. 
 
# If a relative path is entered the value of OUTPUT_DIRECTORY will be 
 
# put in front of it. If left blank `html' will be used as the default path.
 

	
 
HTML_OUTPUT            = @CMAKE_CURRENT_SOURCE_DIR@/../docs/html
 
HTML_OUTPUT            = @CMAKE_CURRENT_SOURCE_DIR@/../../docs/api/html
 

	
 
# The HTML_FILE_EXTENSION tag can be used to specify the file extension for 
 
# each generated HTML page (for example: .htm,.php,.asp). If it is left blank 
 
# doxygen will generate files with .html extension.
 

	
 
HTML_FILE_EXTENSION    = .html
0 comments (0 inline, 0 general)