]> Creatis software - creaVtk.git/blob - CMakeLists.txt
#3524 BoxWidget_tool Box
[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
65
66 # JPR 4 mars 2011
67 set (CMAKE_MODULE_PATH ${CMAKE_INSTALL_PREFIX}/share/cmake/Module)
68
69 #==================================
70 SET(CREA_VERBOSE_CMAKE TRUE)
71 #==================================
72 # Find crea (mandatory, to use macros)
73 FIND_PACKAGE(crea REQUIRED)
74 IF (crea_FOUND)
75   INCLUDE(${crea_USE_FILE})
76 ENDIF(crea_FOUND)
77 #==================================
78
79
80
81 # USER! : Add here as many 'FIND_PACKAGE' blocks as *your* aplication requires
82 # -----
83
84 # WARNING : we are talking here about 'bbtk packages', not about libraries!
85 # if your project just requires the GDCM library, and not bbtk/packages/gdcm, 
86 # do not add FIND_PACKAGE(gdcm REQUIRED).
87 # Just set USE_GDCM to ON, after " Libraries/tools used
88
89
90 #==================================
91 # Do not allow to build inside the source tree
92 CREA_PREVENT_IN_SOURCE_BUILD()
93 #==================================
94
95 #==================================
96 # Libraries/tools used
97
98 # USER! : Note : Set USE_CREA to ON
99 # -----
100
101 #  if you need to LINK against crea
102 #  (and not only use its macros)
103 SET(USE_CREA      OFF)
104
105 SET(USE_GDCM      OFF)
106 SET(USE_GDCM_VTK  OFF)
107 SET(USE_GDCM2     OFF)
108 SET(USE_WXWIDGETS OFF)
109 SET(USE_KWWIDGETS OFF)
110 SET(USE_VTK       ON)
111 SET(USE_ITK       OFF)
112 SET(USE_BOOST     OFF)
113 SET(USE_OPENMP    ON)
114
115 #==================================
116
117 #==================================
118
119 #FIND_PACKAGE(xxx REQUIRED)
120 #IF (xxx_FOUND)
121 #  INCLUDE(${xxx_USE_FILE})
122 #ENDIF(xxx_FOUND)
123
124 #==================================
125
126 #==================================
127 # USER! : Note : Set USE_DOXYGEN to ON
128 #  if you think you will ask, some day,
129 #  for Doxygen generation
130 #EED SET(USE_DOXYGEN   OFF)
131
132 # Note : Set USE_LATEX to ON, USE_TTH to ON
133 #  if you think you will ask, some day,
134 #  for doc generation using your own latex documents
135 #EED SET(USE_LATEX     OFF)
136 #EED SET(USE_TTH       OFF)
137
138 CREA_FIND_AND_USE_LIBRARIES()
139 #==================================
140
141 #==================================
142 # Where to put executables and libs
143 SET(EXECUTABLE_OUTPUT_PATH ${PROJECT_BINARY_DIR})
144 SET(LIBRARY_OUTPUT_PATH ${PROJECT_BINARY_DIR})
145 MARK_AS_ADVANCED(
146   CMAKE_BACKWARDS_COMPATIBILITY
147   EXECUTABLE_OUTPUT_PATH
148   LIBRARY_OUTPUT_PATH
149   )
150 #==================================
151
152 IF(WIN32)
153   INCLUDE_DIRECTORIES(${PROJECT_SOURCE_DIR}/win32)
154   LINK_DIRECTORIES(${PROJECT_SOURCE_DIR}/win32)
155 ENDIF(WIN32)
156
157 #================================== 
158
159 #==================================
160
161   SET(LIBNAME $(creaVtk))
162   
163   INCLUDE_DIRECTORIES(
164     ${PROJECT_BINARY_DIR}
165   )
166   
167  # USER! : Add here the directories holding the .h you need 
168  
169  # INCLUDE_DIRECTORIES(appli/_YOUR_OWN_APPLI_SOURCE_DIRECTORY_)  
170  # INCLUDE_DIRECTORIES(lib/_YOUR_OWN_LIBRARY_SOURCE_DIRECTORY_)  
171
172 #==================================
173
174
175 #----------------------------------------------------------------------------
176 INCLUDE(${PROJECT_SOURCE_DIR}/cmake/UserRootCMakeLists.cmake)
177
178 #==================================
179 # Where to generate documentation
180
181 SET(BBTK_DOC_BUILD_PATH 
182      ${PROJECT_BINARY_DIR}/doc
183    )
184 #==================================
185 # USER! : Hands off!
186 # ----
187
188 # ADD SUB DIRECTORIES
189 # ----------------
190 ADD_SUBDIRECTORY(lib)
191 ADD_SUBDIRECTORY(appli)
192 ADD_SUBDIRECTORY(doc)
193 ADD_SUBDIRECTORY(data)
194 ADD_SUBDIRECTORY(install)
195 #==================================
196
197 #-----------------------------------
198 # This one is just a sample.
199 # USER : you may comment out this line
200 # ----
201
202 #ADD_SUBDIRECTORY(bbtk_mySamplePackage_PKG)
203
204 #==================================
205 # This one is the default empty package,
206 # created with the same name than the Project.
207 # USER : you may use it
208 # ----
209 ADD_SUBDIRECTORY(bbtk_creaVtk_PKG)
210 #ADD_SUBDIRECTORY(bbtk_creaVtkHeartAngles_PKG)
211
212
213