]> Creatis software - creaRigidRegistration.git/blob - doc/template_WebSite/CMakeLists.txt
Feature #1766 Add licence terms for all files.
[creaRigidRegistration.git] / doc / template_WebSite / CMakeLists.txt
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 # Previous Authors : Laurent Guigues, Jean-Pierre Roux
7 # CreaTools website : www.creatis.insa-lyon.fr/site/fr/creatools_accueil
8 #
9 #  This software is governed by the CeCILL-B license under French law and 
10 #  abiding by the rules of distribution of free software. You can  use, 
11 #  modify and/ or redistribute the software under the terms of the CeCILL-B 
12 #  license as circulated by CEA, CNRS and INRIA at the following URL 
13 #  http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html 
14 #  or in the file LICENSE.txt.
15 #
16 #  As a counterpart to the access to the source code and  rights to copy,
17 #  modify and redistribute granted by the license, users are provided only
18 #  with a limited warranty  and the software's author,  the holder of the
19 #  economic rights,  and the successive licensors  have only  limited
20 #  liability. 
21 #
22 #  The fact that you are presently reading this means that you have had
23 #  knowledge of the CeCILL-B license and that you accept its terms.
24 # ------------------------------------------------------------------------                                                                         
25
26
27 MESSAGE(STATUS "")
28 MESSAGE(STATUS "=======================================")
29 MESSAGE(STATUS "Configuring User html doc")
30
31 # Configure & install images 
32 USER_DOC_INSTALL_IMAGES(template_WebSite)
33
34 # Configure html pages for build tree and install 
35 FILE(GLOB HTML_PAGES "." "*.html")
36 FOREACH(page ${HTML_PAGES})  
37   GET_FILENAME_COMPONENT(filename "${page}" NAME)
38   CONFIGURE_FILE(
39     ${page}
40     ${BBTK_DOC_BUILD_PATH}/template_WebSite/${filename}
41     @ONLY
42     )
43   # Install
44   INSTALL(
45     FILES ${BBTK_DOC_BUILD_PATH}/template_WebSite/${filename}
46     DESTINATION ${BBTK_DOC_INSTALL_PATH}/template_WebSite
47     )
48 ENDFOREACH(page)
49
50
51 #===================================================================
52 # Regenerate package doc / boxes lists
53 # Must be made manually as:
54 # 1) Is useless for installers (it is to be run after install)
55 # 2) Can be done manually for a build tree (e.g. in bbStudio)
56 IF(FALSE)
57
58 SET(INDEX_OUTPUT index-alpha.html)
59
60 IF (WIN32)
61   
62   SET(USE_DOT TRUE)
63   MAKE_DLL_PATH()
64
65    ADD_CUSTOM_COMMAND(
66      OUTPUT ${INDEX_OUTPUT}
67          COMMAND 
68      set Path=${DLL_PATH} && cd ${BBTK_BIN_PATH} && bbRegeneratePackageDoc -a -q &&  bbRegenerateBoxesLists -q
69
70     DEPENDS ${BBTK_PACKAGES_DEPS}
71           )
72
73 ELSE (WIN32)
74   
75   #     MESSAGE(STATUS "PACKAGE_DEPS=${BBTK_PACKAGES_DEPS}")
76   
77   SET(LD_LIBRARY_PATH "$ENV{LD_LIBRARY_PATH}:${LIBRARY_OUTPUT_PATH}")
78   #   MESSAGE(LD_LIBRARY_PATH=${LD_LIBRARY_PATH})
79   
80   ADD_CUSTOM_COMMAND(
81     OUTPUT ${INDEX_OUTPUT}
82     COMMAND 
83     
84     cd ${BBTK_BIN_PATH} && export LD_LIBRARY_PATH=${LD_LIBRARY_PATH} && ./bbRegeneratePackageDoc -a -q &&  ./bbRegenerateBoxesLists -q
85     
86     DEPENDS ${BBTK_PACKAGES_DEPS} bbRegeneratePackageDoc bbRegenerateBoxesLists
87     )
88   
89 ENDIF (WIN32)
90
91 ADD_CUSTOM_TARGET(
92   bbdoc ALL
93   DEPENDS ${INDEX_OUTPUT}
94   )
95            
96 ENDIF(FALSE)
97            
98 MESSAGE(STATUS "=======================================")