]> Creatis software - creaRigidRegistration.git/blob - install/CMakeLists.txt
Feature #1766 Add licence terms for all files.
[creaRigidRegistration.git] / install / 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 # CPACK+NSIS PACKAGING
28 #-----------------------------------------------------------------------------
29
30 #---Documentation-------------
31 #http://www.cmake.org/Wiki/CMake:Packaging_With_CPack
32 #http://www.cmake.org/Wiki/CMake:CPackConfiguration
33 #http://www.cmake.org/Wiki/CMake:Install_Commands
34
35
36 INCLUDE(InstallRequiredSystemLibraries)
37
38 SET(CPACK_PACKAGE_DESCRIPTION_SUMMARY "${PROJECT_NAME} - CREATIS")
39 SET(CPACK_PACKAGE_VENDOR "CREATIS")
40 SET(CPACK_PACKAGE_DESCRIPTION_FILE "${PROJECT_SOURCE_DIR}/README.txt")
41 SET(CPACK_RESOURCE_FILE_LICENSE "${PROJECT_SOURCE_DIR}/LICENSE.txt")
42 SET(CPACK_PACKAGE_VERSION_MAJOR ${PROJECT_MAJOR_VERSION})
43 SET(CPACK_PACKAGE_VERSION_MINOR ${PROJECT_MINOR_VERSION})
44 SET(CPACK_PACKAGE_VERSION_PATCH ${PROJECT_BUILD_VERSION})
45
46
47
48
49 #IF (BUILD_BBTK_PACKAGE_creaMaracasVisu)
50 #
51 #  SET(CPACK_PACKAGE_INSTALL_DIRECTORY "CreaTools\\\\bbtk-${BBTK_VERSION}")
52 #  IF(WIN32)
53 #    SET(CMAKE_INSTALL_PREFIX C:/CreaTools/bbtk-${BBTK_VERSION})
54 #  ENDIF(WIN32)
55
56 #ELSE (BUILD_BBTK_PACKAGE_creaMaracasVisu)
57 IF(WIN32)
58         SET(CPACK_PACKAGE_INSTALL_DIRECTORY "CreaTools\\\\${PROJECT_NAME}-${CPACK_PACKAGE_VERSION_MAJOR}.${CPACK_PACKAGE_VERSION_MINOR}.${CPACK_PACKAGE_VERSION_PATCH}")
59 ELSE(WIN32)
60         SET(CPACK_PACKAGE_INSTALL_DIRECTORY "CreaTools/${PROJECT_NAME}-${CPACK_PACKAGE_VERSION_MAJOR}.${CPACK_PACKAGE_VERSION_MINOR}.${CPACK_PACKAGE_VERSION_PATCH}")
61 ENDIF(WIN32)
62   
63   IF(WIN32)
64    SET(CMAKE_INSTALL_PREFIX C:/CreaTools/${PROJECT_NAME})
65   ENDIF(WIN32)
66
67
68 #ENDIF (BUILD_BBTK_PACKAGE_creaMaracasVisu)
69
70
71
72 IF(WIN32 AND NOT UNIX)
73   # There is a bug in NSI that does not handle full unix paths properly. Make
74   # sure there is at least one set of four (4) backlasshes.
75 #EED  SET(CPACK_PACKAGE_ICON "${CMAKE_CURRENT_SOURCE_DIR}/kernel/install/gnome/bbi-icon2.bmp")
76 #  SET(CPACK_NSIS_INSTALLED_ICON_NAME "bin/BBI_EXE.exe")
77   SET(CPACK_NSIS_DISPLAY_NAME "${PROJECT_NAME}")
78   SET(CPACK_NSIS_HELP_LINK "http://www.creatis.insa-lyon.fr/creatools/${PROJECT_NAME}")
79   SET(CPACK_NSIS_URL_INFO_ABOUT "http://www.creatis.insa-lyon.fr/creatools/${PROJECT_NAME}")
80   SET(CPACK_NSIS_CONTACT "info-dev@creatis.insa-lyon.fr")
81   SET(CPACK_NSIS_MODIFY_PATH ON)
82 ELSE(WIN32 AND NOT UNIX)
83 #  SET(CPACK_STRIP_FILES "bin/bbi")
84   SET(CPACK_SOURCE_STRIP_FILES "")
85 ENDIF(WIN32 AND NOT UNIX)
86 #SET(CPACK_PACKAGE_EXECUTABLES "TestWxGimmickDialog" "Gimmick!")
87   
88
89 INCLUDE(CPack)
90
91
92 # Aditional INSTALL for CPACK mecanism.
93 IF (WIN32)
94
95 #  INSTALL( FILES ${PROJECT_SOURCE_DIR}/win32/sqlite3.dll DESTINATION bin ) 
96
97 ENDIF (WIN32)
98
99
100
101
102
103