]> Creatis software - bbtk.git/blob - kernel/install/cpack/CMakeLists.txt
Feature #1774
[bbtk.git] / kernel / install / cpack / 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
28 #-----------------------------------------------------------------------------
29 IF(WIN32)
30         SET(CMAKE_INSTALL_PREFIX C:/CreaTools/bbtk)
31 ENDIF(WIN32)
32 SET(BBTK_INSTALL_PREFIX ${CMAKE_INSTALL_PREFIX})
33 #-----------------------------------------------------------------------------
34
35 #---Documentation-------------
36 #http://www.cmake.org/Wiki/CMake:Packaging_With_CPack
37 #http://www.cmake.org/Wiki/CMake:CPackConfiguration
38 #http://www.cmake.org/Wiki/CMake:Install_Commands
39
40
41 INCLUDE(InstallRequiredSystemLibraries)
42
43 SET(CPACK_PACKAGE_DESCRIPTION_SUMMARY "The Black Box Toolkit (bbtk) - CREATIS-LRMN")
44 SET(CPACK_PACKAGE_VENDOR "CREATIS-LRMN")
45 SET(CPACK_PACKAGE_DESCRIPTION_FILE "${PROJECT_SOURCE_DIR}/README.txt")
46 SET(CPACK_RESOURCE_FILE_LICENSE "${PROJECT_SOURCE_DIR}/LICENSE.txt")
47 SET(CPACK_PACKAGE_VERSION_MAJOR ${BBTK_MAJOR_VERSION})
48 SET(CPACK_PACKAGE_VERSION_MINOR ${BBTK_MINOR_VERSION})
49 SET(CPACK_PACKAGE_VERSION_PATCH ${BBTK_BUILD_VERSION})
50   # There is a bug in NSI that does not handle full unix paths properly. Make
51   # sure there is at least one set of four (4) backlasshes.
52 IF(WIN32)
53         SET(CPACK_PACKAGE_INSTALL_DIRECTORY "CreaTools\\\\bbtk-${BBTK_MAJOR_VERSION}.${BBTK_MINOR_VERSION}.${BBTK_BUILD_VERSION}")
54 ELSE(WIN32)
55         SET(CPACK_PACKAGE_INSTALL_DIRECTORY "CreaTools/bbtk-${BBTK_MAJOR_VERSION}.${BBTK_MINOR_VERSION}.${BBTK_BUILD_VERSION}")
56 ENDIF(WIN32)
57
58 #SET(CPACK_SOURCE_PACKAGE_FILE_NAME "bbtk-${CPACK_PACKAGE_VERSION_MAJOR}.${CPACK_PACKAGE_VERSION_MINOR}.${CPACK_PACKAGE_VERSION_PATCH}")
59 IF(WIN32 AND NOT UNIX)
60 #EED  SET(CPACK_PACKAGE_ICON "${CMAKE_CURRENT_SOURCE_DIR}/kernel/install/gnome/bbi-icon2.bmp")
61   SET(CPACK_NSIS_INSTALLED_ICON_NAME "bin/BBI_EXE.exe")
62   SET(CPACK_NSIS_DISPLAY_NAME "${CPACK_PACKAGE_INSTALL_DIRECTORY}")
63   SET(CPACK_NSIS_HELP_LINK "http://www.creatis.insa-lyon.fr/site/en/CreaTools_home")
64   SET(CPACK_NSIS_URL_INFO_ABOUT "http://www.creatis.insa-lyon.fr/site/en/CreaTools_home")
65   SET(CPACK_NSIS_CONTACT "info-dev@creatis.insa-lyon.fr")
66   SET(CPACK_NSIS_MODIFY_PATH ON)
67 ELSE(WIN32 AND NOT UNIX)
68   SET(CPACK_STRIP_FILES "bin/bbi")
69   SET(CPACK_SOURCE_STRIP_FILES "")
70 ENDIF(WIN32 AND NOT UNIX)
71 SET(CPACK_PACKAGE_EXECUTABLES "bbStudio" "bbStudio" "bbPackageBrowser" "bbPackageBrowser" "bbi" "bbInterpreter" "bbRegeneratePackageDoc" "Regenerate packages doc" "bbRegenerateBoxesLists" "Regenerate boxes lists")
72  
73  
74
75 IF(WIN32)
76 SET(CPACK_NSIS_EXTRA_UNINSTALL_COMMANDS  "
77                         
78                         SetShellVarContext current
79                         StrCpy $R0 \\\"$DOCUMENTS\\\\..\\\\.bbtk\\\\doc\\\"
80                         RMDir /r $R0
81                 ")
82 ENDIF(WIN32)
83
84   
85   
86 INCLUDE(CPack)
87
88
89 # Aditional INSTALL for CPACK mecanism.
90
91 IF(WIN32)
92
93 OPTION(BBTK_STANDALONE_INSTALLER "Install and add to installer all dlls needed, including from external toolkits (wx,itk,vtk)?" OFF)
94
95 IF(BBTK_STANDALONE_INSTALLER)
96   STRING(REGEX REPLACE "\\\\" "/" WINDIR "$ENV{WINDIR}")
97   INSTALL(   FILES ${WINDIR}/system32/msvcp71d.dll                              DESTINATION bin/ )
98   INSTALL(   FILES ${WINDIR}/system32/msvcr71d.dll                              DESTINATION bin/ )
99
100   IF(USE_VTK)
101     SET(VTK_BIN_DIR ${VTK_DIR}/../../bin )
102
103     FILE(GLOB LST_FILE_VTKDLL "${VTK_BIN_DIR}/*.dll")
104     FOREACH( iLST  ${LST_FILE_VTKDLL} )
105        INSTALL( 
106          FILES ${iLST}
107          DESTINATION bin/
108        )
109     ENDFOREACH(iLST)
110   ENDIF(USE_VTK)
111     
112   IF(USE_ITK)
113     INSTALL(   FILES ${ITK_DIR}/../../bin/ITKCommon.dll         DESTINATION bin/ )
114   ENDIF(USE_ITK)
115
116   IF(USE_WXWIDGETS)
117     INSTALL(   FILES ${WXWIDGETS_ROOT_DIR}/lib/vc_dll/wxmsw28d_xrc_vc_custom.dll                        DESTINATION bin/ )
118     INSTALL(   FILES ${WXWIDGETS_ROOT_DIR}/lib/vc_dll/wxmsw28d_richtext_vc_custom.dll           DESTINATION bin/ )
119     INSTALL(   FILES ${WXWIDGETS_ROOT_DIR}/lib/vc_dll/wxmsw28d_qa_vc_custom.dll                         DESTINATION bin/ )
120     INSTALL(   FILES ${WXWIDGETS_ROOT_DIR}/lib/vc_dll/wxmsw28d_media_vc_custom.dll              DESTINATION bin/ )
121     INSTALL(   FILES ${WXWIDGETS_ROOT_DIR}/lib/vc_dll/wxmsw28d_html_vc_custom.dll               DESTINATION bin/ )
122     INSTALL(   FILES ${WXWIDGETS_ROOT_DIR}/lib/vc_dll/wxmsw28d_gl_vc_custom.dll                         DESTINATION bin/ )
123     INSTALL(   FILES ${WXWIDGETS_ROOT_DIR}/lib/vc_dll/wxmsw28d_core_vc_custom.dll               DESTINATION bin/ )
124     INSTALL(   FILES ${WXWIDGETS_ROOT_DIR}/lib/vc_dll/wxmsw28d_aui_vc_custom.dll                        DESTINATION bin/ )
125     INSTALL(   FILES ${WXWIDGETS_ROOT_DIR}/lib/vc_dll/wxmsw28d_adv_vc_custom.dll                        DESTINATION bin/ )
126     INSTALL(   FILES ${WXWIDGETS_ROOT_DIR}/lib/vc_dll/wxbase28d_xml_vc_custom.dll               DESTINATION bin/ )
127     INSTALL(   FILES ${WXWIDGETS_ROOT_DIR}/lib/vc_dll/wxbase28d_vc_custom.dll                           DESTINATION bin/ )
128     INSTALL(   FILES ${WXWIDGETS_ROOT_DIR}/lib/vc_dll/wxbase28d_odbc_vc_custom.dll              DESTINATION bin/ )
129     INSTALL(   FILES ${WXWIDGETS_ROOT_DIR}/lib/vc_dll/wxbase28d_net_vc_custom.dll                       DESTINATION bin/ )
130   ENDIF(USE_WXWIDGETS)
131 ENDIF(BBTK_STANDALONE_INSTALLER)
132
133 ENDIF(WIN32)