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_LATEX_DOC TEX_FILE OUTPUT_REL_PATH)
28 SET(USE_LATEX ON CACHE BOOL "" FORCE)
29 # Construct absolute build path
30 SET(BUILD_PATH ${${PROJECT_NAME}_DOC_BUILD_PATH}/${OUTPUT_REL_PATH})
31 #MESSAGE(STATUS "Tex file : ${TEX_FILE}")
32 #---------------------------------------------------------------------------
34 ${CMAKE_CURRENT_SOURCE_DIR}/${TEX_FILE}.tex
35 ${BUILD_PATH}/${TEX_FILE}.tex
39 ${CMAKE_CURRENT_SOURCE_DIR}/../config.tex
40 ${BUILD_PATH}/config.tex
44 ${CMAKE_CURRENT_SOURCE_DIR}/../config.tex
45 ${CMAKE_CURRENT_BINARY_DIR}/config.tex
48 #---------------------------------------------------------------------------
49 FILE(TO_NATIVE_PATH ${BUILD_PATH} THE_BUILD_PATH)
51 # Have to run latex twice to get references, toc, etc.
52 #message("ADD_CUSTOM_COMMAND(OUTPUT ${BUILD_PATH}/${TEX_FILE}.aux MACRO(USER_BUILD_LATEX_DOC")
55 OUTPUT ${BUILD_PATH}/${TEX_FILE}.aux
58 cd ${THE_BUILD_PATH} && ${LATEX_COMPILER}
60 -interaction=batchmode ${BUILD_PATH}/${TEX_FILE} -output-directory=${BUILD_PATH}/
63 ${CMAKE_CURRENT_SOURCE_DIR}/${TEX_FILE}.tex
64 ${CMAKE_CURRENT_SOURCE_DIR}/../config.tex
67 #message("LATEX_COMPILER = ${LATEX_COMPILER}")
69 OUTPUT ${BUILD_PATH}/${TEX_FILE}.pdf
72 cd ${THE_BUILD_PATH} && ${LATEX_COMPILER}
74 -interaction=batchmode ${BUILD_PATH}/${TEX_FILE} -output-directory=${BUILD_PATH}/
76 DEPENDS ${BUILD_PATH}/${TEX_FILE}.aux
80 ADD_CUSTOM_TARGET(${TEX_FILE}.pdf ALL
81 DEPENDS ${BUILD_PATH}/${TEX_FILE}.pdf)
85 FILES ${BUILD_PATH}/${TEX_FILE}.pdf
86 DESTINATION ${${PROJECT_NAME}_DOC_INSTALL_PATH}/${OUTPUT_REL_PATH}
89 ENDMACRO(USER_BUILD_LATEX_DOC)