]> Creatis software - crea.git/blob - cmake/CREAMacro_FindAndUseVTK.cmake
Feature #1763
[crea.git] / cmake / CREAMacro_FindAndUseVTK.cmake
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 MACRO(CREA_FIND_AND_USE_VTK)
26   #---------------------------------------------------------------------------
27   IF(NOT VTK_FOUND)
28     # Search VTK
29         message("DFCH--VTK: CREAMacro_FindAndUseVTK.cmake: "${CMAKE_CURRENT_LIST_FILE})
30         message("DFCH--VTK: CREAMacro_FindAndUseVTK.cmake: "${_IMPORT_PREFIX})
31     FIND_PACKAGE(VTK)
32     # If vtk found
33     IF(VTK_FOUND)
34
35       MESSAGE ( STATUS "=======================================")
36       MESSAGE ( STATUS "Looking for VTK... found")
37       MESSAGE ( STATUS "* Dir     = ${VTK_DIR}")
38       MESSAGE ( STATUS "* Version = ${VTK_MAJOR_VERSION}.${VTK_MINOR_VERSION}.${VTK_BUILD_VERSION}")
39       SET(VTK_BUILD_SETTINGS_FILE OFF)      
40         INCLUDE(${VTK_USE_FILE})
41         LINK_DIRECTORIES(${VTK_DIR}) #DFCH -- 16/7/2012
42
43         IF(VTK_USE_GL2PS)
44                 add_definitions(-DUSE_WXGLCANVAS)
45                 # CMake 2.6:
46                 # technically those packages are not required since one can still use the Motif/X11 version and not the gtk one:
47                 FIND_PACKAGE(PkgConfig)
48                 pkg_check_modules (GTK2 gtk+-2.0)
49                 #MESSAGE("${GTK2_INCLUDE_DIRS}")
50                 INCLUDE_DIRECTORIES(${GTK2_INCLUDE_DIRS})
51                 LINK_LIBRARIES(${GTK2_LIBRARIES})
52                 # Can I require all my user to have the gl lib on linux, even if they do not really need it...
53                 SET(WXGLCANVASLIBS "gl")
54         ENDIF(VTK_USE_GL2PS)  
55
56       CREA_DEFINE( USE_VTK )
57       CREA_DEFINE( _USE_VTK_ )
58       SET(VTK_LIBRARIES
59         vtkCommon     # Mandatory
60         vtkFiltering  # vtkImageData
61         vtkRendering  # vtkProp3D
62         vtkWidgets    # vtkImagePlaneWidget
63         vtkIO         # vtkMetaImageReader/Writer
64         vtkImaging    # filters such as vtkImageAnisotropicDiffusion3D
65         vtkGraphics   # vtkContourFilter, sources
66         vtkVolumeRendering # Mappers 
67         vtkGenericFiltering
68         vtkHybrid
69 #       vtkInfovis
70 #       vtkViews
71         )
72       IF(NOT USE_ITK)
73         SET(VTK_LIBRARIES ${VTK_LIBRARIES} vtkIO)
74       ENDIF(NOT USE_ITK)
75       MARK_AS_ADVANCED(VTK_DIR)
76     ELSE(VTK_FOUND)
77       message(FATAL_ERROR "VTK_DIR not found")
78     ENDIF(VTK_FOUND)
79   ENDIF(NOT VTK_FOUND)  
80   #---------------------------------------------------------------------------
81 ENDMACRO(CREA_FIND_AND_USE_VTK)