1 # ---------------------------------------------------------------------
3 # Copyright (c) CREATIS (Centre de Recherche en Acquisition et Traitement de l'Image
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
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.
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
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 # ------------------------------------------------------------------------ */
26 #-----------------------------------------------------------------------------
27 # CPACK+NSIS PACKAGING
28 #-----------------------------------------------------------------------------
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
36 INCLUDE(InstallRequiredSystemLibraries)
38 SET(CPACK_PACKAGE_DESCRIPTION_SUMMARY "creaEnvironment - CREATIS-LRMN")
39 SET(CPACK_PACKAGE_VENDOR "CREATIS-LRMN")
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})
48 #SET(CPACK_PACKAGE_INSTALL_DIRECTORY "CreaTools\\\\creaEnvironment-${CPACK_PACKAGE_VERSION_MAJOR}.${CPACK_PACKAGE_VERSION_MINOR}.${CPACK_PACKAGE_VERSION_PATCH}")
52 #IF (BUILD_BBTK_PACKAGE_creaEnvironment)
54 # SET(CPACK_PACKAGE_INSTALL_DIRECTORY "CreaTools\\\\bbtk-${BBTK_VERSION}")
56 # SET(CMAKE_INSTALL_PREFIX C:/CreaTools/bbtk-${BBTK_VERSION})
59 #ELSE (BUILD_BBTK_PACKAGE_creaEnvironment)
61 SET(CPACK_PACKAGE_INSTALL_DIRECTORY "CreaTools\\\\creaEnvironment-${CPACK_PACKAGE_VERSION_MAJOR}.${CPACK_PACKAGE_VERSION_MINOR}.${CPACK_PACKAGE_VERSION_PATCH}")
63 SET(CMAKE_INSTALL_PREFIX C:/CreaTools/creaEnvironment)
67 #ENDIF (BUILD_BBTK_PACKAGE_creaEnvironment)
71 IF(WIN32 AND NOT UNIX)
72 # There is a bug in NSI that does not handle full unix paths properly. Make
73 # sure there is at least one set of four (4) backlasshes.
74 #EED SET(CPACK_PACKAGE_ICON "${CMAKE_CURRENT_SOURCE_DIR}/kernel/install/gnome/bbi-icon2.bmp")
75 # SET(CPACK_NSIS_INSTALLED_ICON_NAME "bin/BBI_EXE.exe")
76 SET(CPACK_NSIS_DISPLAY_NAME "creaEnvironment")
77 SET(CPACK_NSIS_HELP_LINK "http://www.creatis.insa-lyon.fr/creatools/creaEnvironment")
78 SET(CPACK_NSIS_URL_INFO_ABOUT "http://www.creatis.insa-lyon.fr/creatools/creaEnvironment")
79 SET(CPACK_NSIS_CONTACT "info-dev@creatis.insa-lyon.fr")
80 SET(CPACK_NSIS_MODIFY_PATH ON)
84 # SET(CPACK_NSIS_EXTRA_INSTALL_COMMANDS "MessageBox MB_OK 'nnnn eeeeeeed'")
85 SET(CPACK_NSIS_EXTRA_INSTALL_COMMANDS "WriteRegStr HKLM 'SYSTEM\\\\CurrentControlSet\\\\Control\\\\Session Manager\\\\Environment' 'xxEED' 'upspppppEED'")
86 # SET(CPACK_NSIS_EXTRA_INSTALL_COMMANDS "SendMessage ${HWND_BROADCAST} ${WM_WININICHANGE} 0 'STR:Environment' /TIMEOUT=5000")
89 # WriteRegStr HKLM "SYSTEM\CurrentControlSet\Control\Session Manager\Environment" "xxEED" "upslllllEED"
90 # SendMessage ${HWND_BROADCAST} ${WM_WININICHANGE} 0 "STR:Environment" /TIMEOUT=5000
94 ELSE(WIN32 AND NOT UNIX)
95 # SET(CPACK_STRIP_FILES "bin/bbi")
96 SET(CPACK_SOURCE_STRIP_FILES "")
97 ENDIF(WIN32 AND NOT UNIX)
98 #SET(CPACK_PACKAGE_EXECUTABLES "TestWxGimmickDialog" "Gimmick!")
104 # Aditional INSTALL for CPACK mecanism.
107 # INSTALL( FILES ${PROJECT_SOURCE_DIR}/win32/sqlite3.dll DESTINATION bin )
119 OPTION(BBTK_STANDALONE_INSTALLER "Install and add to installer all dlls needed, including from external toolkits (wx,itk,vtk)?" OFF)
121 IF(BBTK_STANDALONE_INSTALLER)
122 STRING(REGEX REPLACE "\\\\" "/" WINDIR "$ENV{WINDIR}")
123 INSTALL( FILES ${WINDIR}/system32/msvcp71d.dll DESTINATION bin/ )
124 INSTALL( FILES ${WINDIR}/system32/msvcr71d.dll DESTINATION bin/ )
127 SET(VTK_BIN_DIR ${VTK_DIR}/../../bin )
129 FILE(GLOB LST_FILE_VTKDLL "${VTK_BIN_DIR}/*.dll")
130 FOREACH( iLST ${LST_FILE_VTKDLL} )
139 INSTALL( FILES ${ITK_DIR}/bin/ITKCommon.dll DESTINATION bin/ )
143 INSTALL( FILES ${WXWIDGETS_ROOT_DIR}/lib/vc_dll/wxmsw28d_xrc_vc_custom.dll DESTINATION bin/ )
144 INSTALL( FILES ${WXWIDGETS_ROOT_DIR}/lib/vc_dll/wxmsw28d_richtext_vc_custom.dll DESTINATION bin/ )
145 INSTALL( FILES ${WXWIDGETS_ROOT_DIR}/lib/vc_dll/wxmsw28d_qa_vc_custom.dll DESTINATION bin/ )
146 INSTALL( FILES ${WXWIDGETS_ROOT_DIR}/lib/vc_dll/wxmsw28d_media_vc_custom.dll DESTINATION bin/ )
147 INSTALL( FILES ${WXWIDGETS_ROOT_DIR}/lib/vc_dll/wxmsw28d_html_vc_custom.dll DESTINATION bin/ )
148 INSTALL( FILES ${WXWIDGETS_ROOT_DIR}/lib/vc_dll/wxmsw28d_gl_vc_custom.dll DESTINATION bin/ )
149 INSTALL( FILES ${WXWIDGETS_ROOT_DIR}/lib/vc_dll/wxmsw28d_core_vc_custom.dll DESTINATION bin/ )
150 INSTALL( FILES ${WXWIDGETS_ROOT_DIR}/lib/vc_dll/wxmsw28d_aui_vc_custom.dll DESTINATION bin/ )
151 INSTALL( FILES ${WXWIDGETS_ROOT_DIR}/lib/vc_dll/wxmsw28d_adv_vc_custom.dll DESTINATION bin/ )
152 INSTALL( FILES ${WXWIDGETS_ROOT_DIR}/lib/vc_dll/wxbase28d_xml_vc_custom.dll DESTINATION bin/ )
153 INSTALL( FILES ${WXWIDGETS_ROOT_DIR}/lib/vc_dll/wxbase28d_vc_custom.dll DESTINATION bin/ )
154 INSTALL( FILES ${WXWIDGETS_ROOT_DIR}/lib/vc_dll/wxbase28d_odbc_vc_custom.dll DESTINATION bin/ )
155 INSTALL( FILES ${WXWIDGETS_ROOT_DIR}/lib/vc_dll/wxbase28d_net_vc_custom.dll DESTINATION bin/ )
157 ENDIF(BBTK_STANDALONE_INSTALLER)