]> Creatis software - crea.git/blob - CMakeLists.txt
#3180 crea Feature New Normal Future - Set wx-config for wxWidgets 2.8
[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 #-----------------------------------------------------------------------------
39 # Configure Dart testing support.  This should be done before any
40 # MESSAGE(FATAL_ERROR ...) commands are invoked.
41 IF(INCLUDE_CTEST)
42   INCLUDE(CTest)
43   ENABLE_TESTING()
44 ENDIF(INCLUDE_CTEST)
45 IF(BUILD_TESTING)
46   SET(BUILDNAME "${BUILDNAME}" CACHE STRING "Name of build on the dashboard")
47   MARK_AS_ADVANCED(BUILDNAME)
48 ENDIF(BUILD_TESTING)
49
50 INCLUDE(Version.cmake)
51
52 SET(CREA_LIBRARY_PROPERTIES ${CREA_LIBRARY_PROPERTIES}
53   VERSION "${crea_MAJOR_VERSION}.${crea_MINOR_VERSION}.${crea_BUILD_VERSION}"
54   SOVERSION "${crea_MAJOR_VERSION}.${crea_MINOR_VERSION}.${crea_BUILD_VERSION}"
55 )
56
57 SET(CREA_VERBOSE_CMAKE TRUE)
58 SET(CREA_CMAKE_REL_PATH cmake)
59 SET(CREA_CMAKE_DIR ${PROJECT_SOURCE_DIR}/${CREA_CMAKE_REL_PATH})
60 INCLUDE(${CREA_CMAKE_DIR}/CREACMakeSettings.cmake NO_POLICY_SCOPE)
61 INCLUDE(${CREA_CMAKE_DIR}/CREAMacros.cmake)
62
63
64 CREA_PREVENT_IN_SOURCE_BUILD()
65 SET(USE_BOOST ON)
66
67 OPTION(CREA_BUILD_VTK "Build crea with vtk ?" OFF)
68 IF(CREA_BUILD_VTK)
69   SET(USE_VTK ON)
70   SET(CREA_BUILT_WITH_VTK ON)
71 ENDIF(CREA_BUILD_VTK)
72
73 OPTION(CREA_BUILD_WX "Build crea with wxWidgets ?" OFF)
74 IF(CREA_BUILD_WX)
75   SET(USE_WXWIDGETS ON)
76   SET(CREA_BUILT_WITH_WX ON)
77 ENDIF(CREA_BUILD_WX)
78
79 # JPR 4 mars 2011
80 set (CMAKE_MODULE_PATH ${CMAKE_INSTALL_PREFIX}/share/cmake/Module)
81
82
83 CREA_FIND_AND_USE_LIBRARIES()
84 SET(EXECUTABLE_OUTPUT_PATH ${PROJECT_BINARY_DIR})
85 SET(LIBRARY_OUTPUT_PATH ${PROJECT_BINARY_DIR})
86 SET(CREA_LIB_PATH ${CMAKE_CREA_LIB_PATH} )
87
88 MARK_AS_ADVANCED(
89   CMAKE_BACKWARDS_COMPATIBILITY
90   EXECUTABLE_OUTPUT_PATH
91   LIBRARY_OUTPUT_PATH
92   )
93   
94 SET (BOOST_FILESYSTEM_VERSION 2)
95
96 #-----------------------------------------------------------------------------
97 # messages compilation options
98
99 OPTION ( CREA_COMPILE_DEBUG_MESSAGES   "Compile CREA debug messages ?"   USE_DEBUG_LIB)
100 OPTION ( CREA_COMPILE_ERROR_MESSAGES   "Compile CREA error messages ?"   ON)
101 OPTION ( CREA_COMPILE_MESSAGES         "Compile CREA messages ?"         ON)
102 OPTION ( CREA_COMPILE_WARNING_MESSAGES "Compile CREA warning messages ?" ON)
103 #-----------------------------------------------------------------------------
104
105 INCLUDE(${CREA_CMAKE_DIR}/CREAResolveOptions.cmake)
106
107 INCLUDE_DIRECTORIES(${PROJECT_SOURCE_DIR}/src)
108 INCLUDE_DIRECTORIES(${PROJECT_BINARY_DIR}/src)
109
110 #JCP UBUNTU
111 INCLUDE_DIRECTORIES(/usr/lib/x86_64-linux-gnu/glib-2.0/include/)
112 #JCP UBUNTU
113
114
115 ADD_SUBDIRECTORY(cmake)
116 ADD_SUBDIRECTORY(src)
117 ADD_SUBDIRECTORY(data)
118 ADD_SUBDIRECTORY(appli)
119 ADD_SUBDIRECTORY(lib)
120 #-----------------------------------------------------------------------------
121 OPTION( BUILD_SAMPLES "Build samples ?" OFF)
122 IF(BUILD_SAMPLES)
123   ADD_SUBDIRECTORY(samples)
124 ENDIF(BUILD_SAMPLES)
125 #-----------------------------------------------------------------------------
126
127 ADD_SUBDIRECTORY(install)
128