]> Creatis software - crea.git/blob - CMakeLists.txt
Merge remote-tracking branch 'refs/remotes/origin/creaDevManagerCMake'
[crea.git] / 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 # Previous Authors : Laurent Guigues, Jean-Pierre Roux
7 # CreaTools website : www.creatis.insa-lyon.fr/site/fr/creatools_accueil
8 #
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.
15 #
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
20 #  liability. 
21 #
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 # ------------------------------------------------------------------------ */                                                                         
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
35 CMAKE_MINIMUM_REQUIRED(VERSION 2.4)
36 PROJECT(crea)
37
38 INCLUDE(Version.cmake)
39
40 SET(CREA_LIBRARY_PROPERTIES ${CREA_LIBRARY_PROPERTIES}
41   VERSION "${crea_MAJOR_VERSION}.${crea_MINOR_VERSION}.${crea_BUILD_VERSION}"
42   SOVERSION "${crea_MAJOR_VERSION}.${crea_MINOR_VERSION}.${crea_BUILD_VERSION}"
43 )
44
45 SET(CREA_VERBOSE_CMAKE TRUE)
46 SET(CREA_CMAKE_REL_PATH cmake)
47 SET(CREA_CMAKE_DIR ${PROJECT_SOURCE_DIR}/${CREA_CMAKE_REL_PATH})
48 INCLUDE(${CREA_CMAKE_DIR}/CREACMakeSettings.cmake NO_POLICY_SCOPE)
49 INCLUDE(${CREA_CMAKE_DIR}/CREAMacros.cmake)
50
51
52 CREA_PREVENT_IN_SOURCE_BUILD()
53 SET(USE_BOOST ON)
54
55 OPTION(CREA_BUILD_VTK "Build crea with vtk ?" OFF)
56 IF(CREA_BUILD_VTK)
57   SET(USE_VTK ON)
58   SET(CREA_BUILT_WITH_VTK ON)
59 ENDIF(CREA_BUILD_VTK)
60
61 OPTION(CREA_BUILD_WX "Build crea with wxWidgets ?" OFF)
62 IF(CREA_BUILD_WX)
63   SET(USE_WXWIDGETS ON)
64   SET(CREA_BUILT_WITH_WX ON)
65 ENDIF(CREA_BUILD_WX)
66
67 # JPR 4 mars 2011
68 set (CMAKE_MODULE_PATH ${CMAKE_INSTALL_PREFIX}/share/cmake/Module)
69
70
71 CREA_FIND_AND_USE_LIBRARIES()
72 SET(EXECUTABLE_OUTPUT_PATH ${PROJECT_BINARY_DIR})
73 SET(LIBRARY_OUTPUT_PATH ${PROJECT_BINARY_DIR})
74 SET(CREA_LIB_PATH ${CMAKE_CREA_LIB_PATH} )
75
76 MARK_AS_ADVANCED(
77   CMAKE_BACKWARDS_COMPATIBILITY
78   EXECUTABLE_OUTPUT_PATH
79   LIBRARY_OUTPUT_PATH
80   )
81   
82 SET (BOOST_FILESYSTEM_VERSION 2)
83
84 #-----------------------------------------------------------------------------
85 # messages compilation options
86
87 OPTION ( CREA_COMPILE_DEBUG_MESSAGES   "Compile CREA debug messages ?"   USE_DEBUG_LIB)
88 OPTION ( CREA_COMPILE_ERROR_MESSAGES   "Compile CREA error messages ?"   ON)
89 OPTION ( CREA_COMPILE_MESSAGES         "Compile CREA messages ?"         ON)
90 OPTION ( CREA_COMPILE_WARNING_MESSAGES "Compile CREA warning messages ?" ON)
91 #-----------------------------------------------------------------------------
92
93 INCLUDE(${CREA_CMAKE_DIR}/CREAResolveOptions.cmake)
94
95 INCLUDE_DIRECTORIES(${PROJECT_SOURCE_DIR}/src)
96 INCLUDE_DIRECTORIES(${PROJECT_BINARY_DIR}/src)
97
98 #JCP UBUNTU
99 INCLUDE_DIRECTORIES(/usr/lib/x86_64-linux-gnu/glib-2.0/include/)
100 #JCP UBUNTU
101
102
103 ADD_SUBDIRECTORY(cmake)
104 ADD_SUBDIRECTORY(src)
105 ADD_SUBDIRECTORY(appli)
106 ADD_SUBDIRECTORY(lib)
107 #-----------------------------------------------------------------------------
108 OPTION( BUILD_SAMPLES "Build samples ?" OFF)
109 IF(BUILD_SAMPLES)
110   ADD_SUBDIRECTORY(samples)
111 ENDIF(BUILD_SAMPLES)
112 #-----------------------------------------------------------------------------
113
114 ADD_SUBDIRECTORY(install)
115