same thing with EIGEN_BINARY_DIR. Now the doc generation works from kdesupport.

This commit is contained in:
Benoit Jacob 2008-08-31 15:20:25 +00:00
parent c931867909
commit d74916e4fe
2 changed files with 7 additions and 6 deletions

View File

@ -13,6 +13,7 @@ SET(EIGEN_VERSION "${EIGEN_VERSION_NUMBER}")
ENDIF(EIGEN_SVN_REVISION) ENDIF(EIGEN_SVN_REVISION)
SET(EIGEN_SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR}) SET(EIGEN_SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR})
SET(EIGEN_BINARY_DIR ${CMAKE_CURRENT_BINARY_DIR})
CMAKE_MINIMUM_REQUIRED(VERSION 2.4) CMAKE_MINIMUM_REQUIRED(VERSION 2.4)

View File

@ -39,7 +39,7 @@ PROJECT_NUMBER = "${EIGEN_VERSION}"
# If a relative path is entered, it will be relative to the location # 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. # where doxygen was started. If left blank the current directory will be used.
OUTPUT_DIRECTORY = ${CMAKE_BINARY_DIR}/doc OUTPUT_DIRECTORY = ${EIGEN_BINARY_DIR}/doc
# If the CREATE_SUBDIRS tag is set to YES, then doxygen will create # 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 # 4096 sub-directories (in 2 levels) under the output directory of each output
@ -555,7 +555,7 @@ WARN_LOGFILE =
INPUT = ${EIGEN_SOURCE_DIR}/Eigen \ INPUT = ${EIGEN_SOURCE_DIR}/Eigen \
${EIGEN_SOURCE_DIR}/doc \ ${EIGEN_SOURCE_DIR}/doc \
${CMAKE_BINARY_DIR}/doc ${EIGEN_BINARY_DIR}/doc
# This tag can be used to specify the character encoding of the source files # 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 # that doxygen parses. Internally doxygen uses the UTF-8 encoding, which is
@ -616,9 +616,9 @@ EXCLUDE_SYMBOLS =
# the \include command). # the \include command).
EXAMPLE_PATH = ${EIGEN_SOURCE_DIR}/doc/snippets \ EXAMPLE_PATH = ${EIGEN_SOURCE_DIR}/doc/snippets \
${CMAKE_BINARY_DIR}/doc/snippets \ ${EIGEN_BINARY_DIR}/doc/snippets \
${EIGEN_SOURCE_DIR}/doc/examples \ ${EIGEN_SOURCE_DIR}/doc/examples \
${CMAKE_BINARY_DIR}/doc/examples ${EIGEN_BINARY_DIR}/doc/examples
# If the value of the EXAMPLE_PATH tag contains directories, you can use the # 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 # EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp
@ -768,14 +768,14 @@ HTML_FILE_EXTENSION = .html
# each generated HTML page. If it is left blank doxygen will generate a # each generated HTML page. If it is left blank doxygen will generate a
# standard header. # standard header.
HTML_HEADER = ${CMAKE_BINARY_DIR}/doc/eigendoxy_header.html HTML_HEADER = ${EIGEN_BINARY_DIR}/doc/eigendoxy_header.html
# The HTML_FOOTER tag can be used to specify a personal HTML footer for # The HTML_FOOTER tag can be used to specify a personal HTML footer for
# each generated HTML page. If it is left blank doxygen will generate a # each generated HTML page. If it is left blank doxygen will generate a
# standard footer. # standard footer.
# the footer has not been customized yet, so let's use the default one # the footer has not been customized yet, so let's use the default one
# ${CMAKE_BINARY_DIR}/doc/eigendoxy_footer.html # ${EIGEN_BINARY_DIR}/doc/eigendoxy_footer.html
HTML_FOOTER = HTML_FOOTER =
# The HTML_STYLESHEET tag can be used to specify a user-defined cascading # The HTML_STYLESHEET tag can be used to specify a user-defined cascading