]> Creatis software - creaVtk.git/blob - CMakeLists.txt
#3233 creaVtk Feature New Normal - GetCameraInfo SetCameraInfo ScreenShot
[creaVtk.git] / CMakeLists.txt
1
2 # ---------------------------------------------------------------------
3 #
4 # Copyright (c) CREATIS (Centre de Recherche en Acquisition et Traitement de l'Image 
5 #                        pour la Sant�)
6 # Authors : Eduardo Davila, Frederic Cervenansky, Claire Mouton
7 # Previous Authors : Laurent Guigues, Jean-Pierre Roux
8 # CreaTools website : www.creatis.insa-lyon.fr/site/fr/creatools_accueil
9 #
10 #  This software is governed by the CeCILL-B license under French law and 
11 #  abiding by the rules of distribution of free software. You can  use, 
12 #  modify and/ or redistribute the software under the terms of the CeCILL-B 
13 #  license as circulated by CEA, CNRS and INRIA at the following URL 
14 #  http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html 
15 #  or in the file LICENSE.txt.
16 #
17 #  As a counterpart to the access to the source code and  rights to copy,
18 #  modify and redistribute granted by the license, users are provided only
19 #  with a limited warranty  and the software's author,  the holder of the
20 #  economic rights,  and the successive licensors  have only  limited
21 #  liability. 
22 #
23 #  The fact that you are presently reading this means that you have had
24 #  knowledge of the CeCILL-B license and that you accept its terms.
25 # ------------------------------------------------------------------------  
26
27 # ---------------------------------
28 #
29 # Unless you are an experimented cmake user,
30 # have a look at :
31 # http://www.creatis.insa-lyon.fr/site/fr/CreatoosGettingStarted-v2.0.X
32 # before starting.
33 #
34 # Generated with creaNewProject, version of : 18/03/2010
35 # ---------------------------------
36
37 CMAKE_MINIMUM_REQUIRED(VERSION 2.6)
38
39 #MARK_AS_ADVANCED( FORCE CMAKE_BACKWARDS_COMPATIBILITY )
40
41 # for CMake 2.6 corrected behaviour (see "cmake --help-policy CMP0003")
42 IF(COMMAND cmake_policy AND ${CMAKE_MAJOR_VERSION} EQUAL 2 AND ${CMAKE_MINOR_VERSION} GREATER 4)
43   CMAKE_POLICY(SET CMP0003 NEW)
44   CMAKE_POLICY(SET CMP0005 NEW)
45   CMAKE_POLICY(SET CMP0011 NEW)
46 ENDIF(COMMAND cmake_policy AND ${CMAKE_MAJOR_VERSION} EQUAL 2 AND ${CMAKE_MINOR_VERSION} GREATER 4)
47
48
49 ###################################
50 PROJECT( creaVtk )
51 ###################################
52
53 #==================================
54 # The project version
55 SET(PROJECT_MAJOR_VERSION 1)
56 SET(PROJECT_MINOR_VERSION 0)
57 SET(PROJECT_BUILD_VERSION 0)
58
59 SET(PROJECT_VERSION "${PROJECT_MAJOR_VERSION}.${PROJECT_MINOR_VERSION}.${PROJECT_BUILD_VERSION}")
60 SET(PROJECT_VERSION_DATE "11/02/2010")
61 #ADD_DEFINITIONS( -DPROJECT_VERSION=${PROJECT_VERSION} )
62 #ADD_DEFINITIONS( -DPROJECT_VERSION_DATE=${PROJECT_VERSION_DATE} )
63
64 # JPR 4 mars 2011
65 set (CMAKE_MODULE_PATH ${CMAKE_INSTALL_PREFIX}/share/cmake/Module)
66
67 #==================================
68 SET(CREA_VERBOSE_CMAKE TRUE)
69 #==================================
70 # Find crea (mandatory, to use macros)
71 FIND_PACKAGE(crea REQUIRED)
72 IF (crea_FOUND)
73   INCLUDE(${crea_USE_FILE})
74 ENDIF(crea_FOUND)
75 #==================================
76
77 # USER! : Add here as many 'FIND_PACKAGE' blocks as *your* aplication requires
78 # -----
79
80 # WARNING : we are talking here about 'bbtk packages', not about libraries!
81 # if your project just requires the GDCM library, and not bbtk/packages/gdcm, 
82 # do not add FIND_PACKAGE(gdcm REQUIRED).
83 # Just set USE_GDCM to ON, after " Libraries/tools used
84
85
86 #==================================
87 # Do not allow to build inside the source tree
88 CREA_PREVENT_IN_SOURCE_BUILD()
89 #==================================
90
91 #==================================
92 # Libraries/tools used
93
94 # USER! : Note : Set USE_CREA to ON
95 # -----
96
97 #  if you need to LINK against crea
98 #  (and not only use its macros)
99 SET(USE_CREA      OFF)
100
101 SET(USE_GDCM      OFF)
102 SET(USE_GDCM_VTK  OFF)
103 SET(USE_GDCM2     OFF)
104 SET(USE_WXWIDGETS OFF)
105 SET(USE_KWWIDGETS OFF)
106 SET(USE_VTK       ON)
107 SET(USE_ITK       OFF)
108 SET(USE_BOOST     OFF)
109
110 #==================================
111
112 #==================================
113
114 #FIND_PACKAGE(xxx REQUIRED)
115 #IF (xxx_FOUND)
116 #  INCLUDE(${xxx_USE_FILE})
117 #ENDIF(xxx_FOUND)
118
119 #==================================
120
121 #==================================
122 # USER! : Note : Set USE_DOXYGEN to ON
123 #  if you think you will ask, some day,
124 #  for Doxygen generation
125 #EED SET(USE_DOXYGEN   OFF)
126
127 # Note : Set USE_LATEX to ON, USE_TTH to ON
128 #  if you think you will ask, some day,
129 #  for doc generation using your own latex documents
130 #EED SET(USE_LATEX     OFF)
131 #EED SET(USE_TTH       OFF)
132
133 CREA_FIND_AND_USE_LIBRARIES()
134 #==================================
135
136 #==================================
137 # Where to put executables and libs
138 SET(EXECUTABLE_OUTPUT_PATH ${PROJECT_BINARY_DIR})
139 SET(LIBRARY_OUTPUT_PATH ${PROJECT_BINARY_DIR})
140 MARK_AS_ADVANCED(
141   CMAKE_BACKWARDS_COMPATIBILITY
142   EXECUTABLE_OUTPUT_PATH
143   LIBRARY_OUTPUT_PATH
144   )
145 #==================================
146
147 IF(WIN32)
148   INCLUDE_DIRECTORIES(${PROJECT_SOURCE_DIR}/win32)
149   LINK_DIRECTORIES(${PROJECT_SOURCE_DIR}/win32)
150 ENDIF(WIN32)
151
152 #================================== 
153
154 #==================================
155
156   SET(LIBNAME $(creaVtk))
157   
158   INCLUDE_DIRECTORIES(
159     ${PROJECT_BINARY_DIR}
160   )
161   
162  # USER! : Add here the directories holding the .h you need 
163  
164  # INCLUDE_DIRECTORIES(appli/_YOUR_OWN_APPLI_SOURCE_DIRECTORY_)  
165  # INCLUDE_DIRECTORIES(lib/_YOUR_OWN_LIBRARY_SOURCE_DIRECTORY_)  
166
167 #==================================
168
169
170 #----------------------------------------------------------------------------
171 INCLUDE(${PROJECT_SOURCE_DIR}/cmake/UserRootCMakeLists.cmake)
172
173 #==================================
174 # Where to generate documentation
175
176 SET(BBTK_DOC_BUILD_PATH 
177      ${PROJECT_BINARY_DIR}/doc
178    )
179 #==================================
180 # USER! : Hands off!
181 # ----
182
183 # ADD SUB DIRECTORIES
184 # ----------------
185 ADD_SUBDIRECTORY(lib)
186 ADD_SUBDIRECTORY(appli)
187 ADD_SUBDIRECTORY(doc)
188 ADD_SUBDIRECTORY(data)
189 ADD_SUBDIRECTORY(install)
190 #==================================
191
192 #-----------------------------------
193 # This one is just a sample.
194 # USER : you may comment out this line
195 # ----
196
197 #ADD_SUBDIRECTORY(bbtk_mySamplePackage_PKG)
198
199 #==================================
200 # This one is the default empty package,
201 # created with the same name than the Project.
202 # USER : you may use it
203 # ----
204 ADD_SUBDIRECTORY(bbtk_creaVtk_PKG)
205 #ADD_SUBDIRECTORY(bbtk_creaVtkHeartAngles_PKG)