]> Creatis software - bbtkGEditor.git/blob - cmake/UserBuildLatexDoc.cmake
Feature #1771 Add licence terms for all files.
[bbtkGEditor.git] / cmake / UserBuildLatexDoc.cmake
1 # ---------------------------------------------------------------------
2 #
3 # Copyright (c) CREATIS (Centre de Recherche en Acquisition et Traitement de l'Image 
4 #                        pour la Santé)
5 # Authors : Eduardo Davila, Frederic Cervenansky, Claire Mouton
6 #
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.
13 #
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
18 #  liability. 
19 #
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 # ------------------------------------------------------------------------ */  
23
24
25
26 MACRO(USER_BUILD_LATEX_DOC TEX_FILE OUTPUT_REL_PATH)
27   # Need LaTeX
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   #---------------------------------------------------------------------------
33   CONFIGURE_FILE(
34     ${CMAKE_CURRENT_SOURCE_DIR}/${TEX_FILE}.tex
35     ${BUILD_PATH}/${TEX_FILE}.tex
36     COPYONLY
37     )
38   CONFIGURE_FILE(
39     ${CMAKE_CURRENT_SOURCE_DIR}/../config.tex
40     ${BUILD_PATH}/config.tex
41     @ONLY
42     )
43   CONFIGURE_FILE(
44     ${CMAKE_CURRENT_SOURCE_DIR}/../config.tex
45     ${CMAKE_CURRENT_BINARY_DIR}/config.tex
46     @ONLY
47     )
48   #---------------------------------------------------------------------------
49  FILE(TO_NATIVE_PATH ${BUILD_PATH} THE_BUILD_PATH)
50
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")
53       
54 ADD_CUSTOM_COMMAND(
55     OUTPUT ${BUILD_PATH}/${TEX_FILE}.aux 
56     COMMAND 
57     # latex
58     cd ${THE_BUILD_PATH} && ${LATEX_COMPILER}
59     ARGS
60     -interaction=batchmode ${BUILD_PATH}/${TEX_FILE} -output-directory=${BUILD_PATH}/
61     
62     DEPENDS 
63     ${CMAKE_CURRENT_SOURCE_DIR}/${TEX_FILE}.tex
64     ${CMAKE_CURRENT_SOURCE_DIR}/../config.tex
65     )
66
67 #message("LATEX_COMPILER = ${LATEX_COMPILER}")
68 ADD_CUSTOM_COMMAND(
69     OUTPUT ${BUILD_PATH}/${TEX_FILE}.pdf
70     COMMAND 
71     # latex
72     cd ${THE_BUILD_PATH} && ${LATEX_COMPILER}
73     ARGS
74     -interaction=batchmode ${BUILD_PATH}/${TEX_FILE} -output-directory=${BUILD_PATH}/
75   
76     DEPENDS ${BUILD_PATH}/${TEX_FILE}.aux 
77     )
78   
79   # pdf target
80   ADD_CUSTOM_TARGET(${TEX_FILE}.pdf ALL
81     DEPENDS ${BUILD_PATH}/${TEX_FILE}.pdf)
82
83   # Install
84   INSTALL( 
85     FILES ${BUILD_PATH}/${TEX_FILE}.pdf
86     DESTINATION ${${PROJECT_NAME}_DOC_INSTALL_PATH}/${OUTPUT_REL_PATH}
87     )
88
89 ENDMACRO(USER_BUILD_LATEX_DOC)