1 # ---------------------------------------------------------------------
3 # Copyright (c) CREATIS (Centre de Recherche en Acquisition et Traitement de l'Image
5 # Authors : Eduardo Davila, Frederic Cervenansky, Claire Mouton
7 # This software is governed by the CeCILL-B license under French law and
8 # abiding by the rules of distribution of free software. You can use,
9 # modify and/ or redistribute the software under the terms of the CeCILL-B
10 # license as circulated by CEA, CNRS and INRIA at the following URL
11 # http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
12 # or in the file LICENSE.txt.
14 # As a counterpart to the access to the source code and rights to copy,
15 # modify and redistribute granted by the license, users are provided only
16 # with a limited warranty and the software's author, the holder of the
17 # economic rights, and the successive licensors have only limited
20 # The fact that you are presently reading this means that you have had
21 # knowledge of the CeCILL-B license and that you accept its terms.
22 # ------------------------------------------------------------------------ */
26 MACRO(USER_BUILD_DOXYGEN_DOC NAME INPUT DOC_RELATIVE_INSTALL_PATH PREDEFINED)
28 #--------------------------------------------------------------------------
29 SET(USE_DOXYGEN ON CACHE BOOL "" FORCE)
32 SET(DOXYGEN_PROJECT_NAME "${NAME}")
35 STRING(REGEX REPLACE ";" " " DOXYGEN_INPUT "${INPUT}")
38 SET(DOXYGEN_HTML_OUTPUT ".")
39 SET(DOXYGEN_OUTPUT "${${PROJECT_NAME}_DOXYGEN_BUILD_PATH}/${DOC_RELATIVE_INSTALL_PATH}")
40 STRING(REGEX REPLACE " " "~" DOXYGEN_OUTPUT "${DOXYGEN_OUTPUT}")
43 IF(NOT IS_DIRECTORY ${DOXYGEN_OUTPUT}/${DOXYGEN_HTML_OUTPUT})
44 FILE(MAKE_DIRECTORY ${DOXYGEN_OUTPUT}/${DOXYGEN_HTML_OUTPUT})
45 ENDIF(NOT IS_DIRECTORY ${DOXYGEN_OUTPUT}/${DOXYGEN_HTML_OUTPUT})
48 SET(DOXYGEN_EXCLUDE "")
49 STRING(REGEX REPLACE ";" " " DOXYGEN_EXCLUDE "${DOXYGEN_EXCLUDE}")
52 SET(DOXYGEN_LOGFILE "${CMAKE_CURRENT_BINARY_DIR}/doxygen.log")
55 STRING(REGEX REPLACE ";" " " DOXYGEN_DOC_PREDEFINED "${PREDEFINED}")
57 #---------------------------------------------------------------------------
60 GET_FILENAME_COMPONENT(DOXYGEN_DOT_PATH ${DOT} PATH)
61 SET(DOXYGEN_HAVE_DOT "YES")
63 SET(DOXYGEN_DOT_PATH "")
64 SET(DOXYGEN_HAVE_DOT "NO")
67 #---------------------------------------------------------------------------
68 # Create file and project
70 ${CMAKE_CURRENT_SOURCE_DIR}/Doxyfile.txt.in
71 ${CMAKE_CURRENT_BINARY_DIR}/Doxyfile.txt
77 OUTPUT ${DOXYGEN_OUTPUT}/${DOXYGEN_HTML_OUTPUT}/index.html
81 ${CMAKE_CURRENT_BINARY_DIR}/Doxyfile.txt
85 ADD_CUSTOM_TARGET(doxygen_${NAME} ALL
86 DEPENDS ${DOXYGEN_OUTPUT}/${DOXYGEN_HTML_OUTPUT}/index.html
91 ${DOXYGEN_OUTPUT}/${DOXYGEN_HTML_OUTPUT}
93 ${${PROJECT_NAME}_DOXYGEN_INSTALL_PATH}/${DOC_RELATIVE_INSTALL_PATH}
95 #--------------------------------------------------------------------------
96 #message("user build doxygen , doxygen output = ${DOXYGEN_OUTPUT}")
97 ENDMACRO(USER_BUILD_DOXYGEN_DOC)