]> Creatis software - crea.git/blob - appli/creaNewProject/NewProject/cmake/UserBuildLatexDoc.cmake
Feature #1763
[crea.git] / appli / creaNewProject / NewProject / 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 NUM CONFERENCEFOLDER TEX_FILE)
27   # Need LaTeX
28   SET(USE_LATEX ON CACHE BOOL "" FORCE)
29   # Construct absolute build path
30   SET(BUILD_PATH ${CMAKE_CURRENT_BINARY_DIR}/${CONFERENCEFOLDER})
31   #MESSAGE(STATUS "Tex file : ${TEX_FILE}")
32   #---------------------------------------------------------------------------
33
34   CREA_CPDIR(${CMAKE_CURRENT_SOURCE_DIR}/${CONFERENCEFOLDER} ${BUILD_PATH})
35
36   # Have to run latex twice to get references, toc, etc.
37  #message("ADD_CUSTOM_COMMAND(OUTPUT ${BUILD_PATH}/${TEX_FILE}.aux   MACRO(USER_BUILD_LATEX_DOC")
38 ADD_CUSTOM_COMMAND(OUTPUT 
39     ${BUILD_PATH}/${TEX_FILE}.pdf    
40
41     COMMAND 
42     # latex
43     cd ${BUILD_PATH} && ${LATEX_COMPILER}
44     ARGS
45     ${BUILD_PATH}/${TEX_FILE}   
46
47     COMMAND 
48     # bibtex
49     cd ${BUILD_PATH} && ${BIBTEX_COMPILER}
50     ARGS
51     ${BUILD_PATH}/${TEX_FILE}
52
53     COMMAND 
54     # latex
55     cd ${BUILD_PATH} && ${LATEX_COMPILER}
56     ARGS
57     ${BUILD_PATH}/${TEX_FILE}   
58
59
60     COMMAND 
61     # latex
62     cd ${BUILD_PATH} && ${LATEX_COMPILER}
63     ARGS
64     ${BUILD_PATH}/${TEX_FILE}
65
66     COMMAND 
67     # latex
68     cd ${BUILD_PATH} && ${DVIPDF_CONVERTER}
69     ARGS
70     ${BUILD_PATH}/${TEX_FILE}
71     )    
72
73
74 add_custom_target(${CONFERENCEFOLDER}${TEX_FILE}.pdf ALL
75                   DEPENDS ${BUILD_PATH}/${TEX_FILE}.pdf)
76
77
78 ADD_CUSTOM_COMMAND(OUTPUT 
79     ${BUILD_PATH}/${TEX_FILE}.html
80
81     COMMAND 
82     # latex
83     cd ${BUILD_PATH} && ${LATEX2HTML_CONVERTER}
84     ARGS
85     -antialias -white -notransparent ${BUILD_PATH}/${TEX_FILE}
86 )
87
88 add_custom_target(${CONFERENCEFOLDER}${TEX_FILE}.html ALL
89                   DEPENDS ${BUILD_PATH}/${TEX_FILE}.html)
90   
91 #message(status "++++++++++++++++++++++++++ ${${PROJECT_NAME}_DOC_INSTALL_PATH}/${OUTPUT_REL_PATH}")
92
93 SET(ARTICLE_LINKS
94       "${ARTICLE_LINKS}
95        <br>${NUM}. <a href=\"../UserDocumentation/${CONFERENCEFOLDER}/${TEX_FILE}/index.html\">${TEX_FILE}</a>
96        <a href=\"../UserDocumentation/${CONFERENCEFOLDER}/${TEX_FILE}.pdf\">PDF File</a><br>"
97    )
98
99 ENDMACRO(USER_BUILD_LATEX_DOC)