]> Creatis software - creaToolsTools.git/blob - windows/crea_ThirdParty_dlls/install/CMakeLists.txt
Feature #1531
[creaToolsTools.git] / windows / crea_ThirdParty_dlls / 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 #
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 # CPACK+NSIS PACKAGING
27 #-----------------------------------------------------------------------------
28
29 #---Documentation-------------
30 #http://www.cmake.org/Wiki/CMake:Packaging_With_CPack
31 #http://www.cmake.org/Wiki/CMake:CPackConfiguration
32 #http://www.cmake.org/Wiki/CMake:Install_Commands
33
34
35 INCLUDE(InstallRequiredSystemLibraries)
36
37 SET(CPACK_PACKAGE_DESCRIPTION_SUMMARY "crea_ThirdParty_dlls - CREATIS")
38 SET(CPACK_PACKAGE_VENDOR "CREATIS")
39 SET(CPACK_PACKAGE_DESCRIPTION_FILE "${PROJECT_SOURCE_DIR}/README.txt")
40 SET(CPACK_RESOURCE_FILE_LICENSE "${PROJECT_SOURCE_DIR}/LICENSE.txt")
41 SET(CPACK_PACKAGE_VERSION_MAJOR ${PROJECT_MAJOR_VERSION})
42 SET(CPACK_PACKAGE_VERSION_MINOR ${PROJECT_MINOR_VERSION})
43 SET(CPACK_PACKAGE_VERSION_PATCH ${PROJECT_BUILD_VERSION})
44
45
46
47
48   SET(CPACK_PACKAGE_INSTALL_DIRECTORY "CreaTools\\\\crea_ThirdParty_dlls-${CPACK_PACKAGE_VERSION_MAJOR}.${CPACK_PACKAGE_VERSION_MINOR}.${CPACK_PACKAGE_VERSION_PATCH}")
49   IF(WIN32)
50     SET(CMAKE_INSTALL_PREFIX C:/CreaTools/crea_ThirdParty_dlls)
51   ENDIF(WIN32)
52
53
54
55 IF(WIN32 AND NOT UNIX)
56   # There is a bug in NSI that does not handle full unix paths properly. Make
57   # sure there is at least one set of four (4) backlasshes.
58 #EED  SET(CPACK_PACKAGE_ICON "${CMAKE_CURRENT_SOURCE_DIR}/kernel/install/gnome/bbi-icon2.bmp")
59 #  SET(CPACK_NSIS_INSTALLED_ICON_NAME "bin/BBI_EXE.exe")
60   SET(CPACK_NSIS_DISPLAY_NAME "crea_ThirdParty_dlls")
61   SET(CPACK_NSIS_HELP_LINK "http://www.creatis.insa-lyon.fr/creatools/crea_ThirdParty_dlls")
62   SET(CPACK_NSIS_URL_INFO_ABOUT "http://www.creatis.insa-lyon.fr/creatools/crea_ThirdParty_dlls")
63   SET(CPACK_NSIS_CONTACT "info-dev@creatis.insa-lyon.fr")
64   SET(CPACK_NSIS_MODIFY_PATH ON)
65 ELSE(WIN32 AND NOT UNIX)
66 #  SET(CPACK_STRIP_FILES "bin/bbi")
67   SET(CPACK_SOURCE_STRIP_FILES "")
68 ENDIF(WIN32 AND NOT UNIX)
69 #SET(CPACK_PACKAGE_EXECUTABLES "TestWxGimmickDialog" "Gimmick!")
70   
71
72 INCLUDE(CPack)
73
74
75 # Aditional INSTALL for CPACK mecanism.
76 IF (WIN32)
77
78 ##  INSTALL( FILES ${PROJECT_SOURCE_DIR}/win32/sqlite3.dll DESTINATION bin ) 
79  STRING(REGEX REPLACE "\\\\" "/" WINDIR "$ENV{WINDIR}")
80   INSTALL(   FILES ${WINDIR}/system32/msvcp71d.dll                              DESTINATION bin/ )
81   INSTALL(   FILES ${WINDIR}/system32/msvcr71d.dll                              DESTINATION bin/ )
82
83   IF(USE_VTK)
84     SET(VTK_BIN_DIR ${VTK_DIR}/bin/relwithdebinfo )
85
86     FILE(GLOB LST_FILE_VTKDLL "${VTK_BIN_DIR}/*.dll")
87     FOREACH( iLST  ${LST_FILE_VTKDLL} )
88        INSTALL(
89          FILES ${iLST}
90          DESTINATION bin/
91        )
92     ENDFOREACH(iLST)
93   ENDIF(USE_VTK)
94     
95   IF(USE_ITK)
96     INSTALL(   FILES ${ITK_DIR}/bin/relwithdebinfo/ITKCommon.dll        DESTINATION bin/ )
97   ENDIF(USE_ITK)
98
99   IF(USE_WXWIDGETS)
100   # Release dlls
101     INSTALL(   FILES ${WXWIDGETS_ROOT_DIR}/lib/vc_dll/wxmsw28_xrc_vc_custom.dll                         DESTINATION bin/ )
102     INSTALL(   FILES ${WXWIDGETS_ROOT_DIR}/lib/vc_dll/wxmsw28_richtext_vc_custom.dll    DESTINATION bin/ )
103     INSTALL(   FILES ${WXWIDGETS_ROOT_DIR}/lib/vc_dll/wxmsw28_qa_vc_custom.dll                          DESTINATION bin/ )
104     INSTALL(   FILES ${WXWIDGETS_ROOT_DIR}/lib/vc_dll/wxmsw28_media_vc_custom.dll               DESTINATION bin/ )
105     INSTALL(   FILES ${WXWIDGETS_ROOT_DIR}/lib/vc_dll/wxmsw28_html_vc_custom.dll                DESTINATION bin/ )
106     INSTALL(   FILES ${WXWIDGETS_ROOT_DIR}/lib/vc_dll/wxmsw28_gl_vc_custom.dll                          DESTINATION bin/ )
107     INSTALL(   FILES ${WXWIDGETS_ROOT_DIR}/lib/vc_dll/wxmsw28_core_vc_custom.dll                DESTINATION bin/ )
108     INSTALL(   FILES ${WXWIDGETS_ROOT_DIR}/lib/vc_dll/wxmsw28_aui_vc_custom.dll                         DESTINATION bin/ )
109     INSTALL(   FILES ${WXWIDGETS_ROOT_DIR}/lib/vc_dll/wxmsw28_adv_vc_custom.dll                         DESTINATION bin/ )
110     INSTALL(   FILES ${WXWIDGETS_ROOT_DIR}/lib/vc_dll/wxbase28_xml_vc_custom.dll                DESTINATION bin/ )
111     INSTALL(   FILES ${WXWIDGETS_ROOT_DIR}/lib/vc_dll/wxbase28_vc_custom.dll                            DESTINATION bin/ )
112     INSTALL(   FILES ${WXWIDGETS_ROOT_DIR}/lib/vc_dll/wxbase28_odbc_vc_custom.dll               DESTINATION bin/ )
113     INSTALL(   FILES ${WXWIDGETS_ROOT_DIR}/lib/vc_dll/wxbase28_net_vc_custom.dll                        DESTINATION bin/ )
114   # Debug dlls
115     INSTALL(   FILES ${WXWIDGETS_ROOT_DIR}/lib/vc_dll/wxmsw28d_xrc_vc_custom.dll                        DESTINATION bin/ )
116     INSTALL(   FILES ${WXWIDGETS_ROOT_DIR}/lib/vc_dll/wxmsw28d_richtext_vc_custom.dll           DESTINATION bin/ )
117     INSTALL(   FILES ${WXWIDGETS_ROOT_DIR}/lib/vc_dll/wxmsw28d_qa_vc_custom.dll                         DESTINATION bin/ )
118     INSTALL(   FILES ${WXWIDGETS_ROOT_DIR}/lib/vc_dll/wxmsw28d_media_vc_custom.dll              DESTINATION bin/ )
119     INSTALL(   FILES ${WXWIDGETS_ROOT_DIR}/lib/vc_dll/wxmsw28d_html_vc_custom.dll               DESTINATION bin/ )
120     INSTALL(   FILES ${WXWIDGETS_ROOT_DIR}/lib/vc_dll/wxmsw28d_gl_vc_custom.dll                         DESTINATION bin/ )
121     INSTALL(   FILES ${WXWIDGETS_ROOT_DIR}/lib/vc_dll/wxmsw28d_core_vc_custom.dll               DESTINATION bin/ )
122     INSTALL(   FILES ${WXWIDGETS_ROOT_DIR}/lib/vc_dll/wxmsw28d_aui_vc_custom.dll                        DESTINATION bin/ )
123     INSTALL(   FILES ${WXWIDGETS_ROOT_DIR}/lib/vc_dll/wxmsw28d_adv_vc_custom.dll                        DESTINATION bin/ )
124     INSTALL(   FILES ${WXWIDGETS_ROOT_DIR}/lib/vc_dll/wxbase28d_xml_vc_custom.dll               DESTINATION bin/ )
125     INSTALL(   FILES ${WXWIDGETS_ROOT_DIR}/lib/vc_dll/wxbase28d_vc_custom.dll                           DESTINATION bin/ )
126     INSTALL(   FILES ${WXWIDGETS_ROOT_DIR}/lib/vc_dll/wxbase28d_odbc_vc_custom.dll              DESTINATION bin/ )
127     INSTALL(   FILES ${WXWIDGETS_ROOT_DIR}/lib/vc_dll/wxbase28d_net_vc_custom.dll                       DESTINATION bin/ )
128   ENDIF(USE_WXWIDGETS)
129
130
131   IF(USE_GDCM)
132     INSTALL(   FILES ${GDCM_DIR}/bin/relwithdebinfo/gdcm.dll                                    DESTINATION bin/ )
133     INSTALL(   FILES ${GDCM_DIR}/bin/relwithdebinfo/gdcmjpeg8.dll                       DESTINATION bin/ )
134     INSTALL(   FILES ${GDCM_DIR}/bin/relwithdebinfo/gdcmjpeg12.dll                      DESTINATION bin/ )
135     INSTALL(   FILES ${GDCM_DIR}/bin/relwithdebinfo/gdcmjpeg16.dll                      DESTINATION bin/ )
136     INSTALL(   FILES ${GDCM_DIR}/bin/relwithdebinfo/gdcmopenjpeg.dll                    DESTINATION bin/ )
137     INSTALL(   FILES ${GDCM_DIR}/bin/relwithdebinfo/vtkgdcm.dll                                 DESTINATION bin/ )
138   ENDIF(USE_GDCM)
139
140   
141   IF(USE_KWWIDGETS)
142     INSTALL(   FILES ${KWWidgets_DIR}/bin/relwithdebinfo/KWWidgets.dll          DESTINATION bin/ )
143   ENDIF(USE_KWWIDGETS)
144
145
146 ENDIF (WIN32)
147
148
149