]> Creatis software - crea.git/blob - src/CMakeLists.txt
Feature #1763
[crea.git] / src / 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 #
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 MESSAGE(STATUS "===============================================")
25 MESSAGE(STATUS "Configuring crea library")
26 #-----------------------------------------------------------------------------
27 INCLUDE_DIRECTORIES(${CMAKE_CURRENT_BINARY_DIR})
28 #-----------------------------------------------------------------------------
29
30 #-----------------------------------------------------------------------------
31 INCLUDE (${CMAKE_ROOT}/Modules/CheckIncludeFile.cmake)
32 CHECK_INCLUDE_FILE("stdint.h"       CMAKE_HAVE_STDINT_H)
33 IF(UNIX) #Avoid polluting Win32 cmakecache
34   CHECK_INCLUDE_FILE("inttypes.h"   CMAKE_HAVE_INTTYPES_H)
35   # termios 
36   CHECK_INCLUDE_FILE("termios.h"   CMAKE_HAVE_TERMIOS_H)
37 ENDIF(UNIX)
38 # Special Time support, two conventions: *NIX vs Win32
39 CHECK_INCLUDE_FILE("sys/times.h"    CMAKE_HAVE_SYS_TIMES_H)
40 CHECK_INCLUDE_FILE("sys/timeb.h"    CMAKE_HAVE_SYS_TIMEB_H)
41 #-----------------------------------------------------------------------------
42
43 #-----------------------------------------------------------------------------
44 CONFIGURE_FILE(${CMAKE_CURRENT_SOURCE_DIR}/creaConfigure.h.in
45                ${CMAKE_CURRENT_BINARY_DIR}/creaConfigure.h 
46                @ONLY IMMEDIATE
47                )
48 #-----------------------------------------------------------------------------
49
50 SET( SRCS
51   creaSystem
52   creaMessageManager
53   creaRTTI
54   creawxVTKRenderWindowInteractor
55   creaVtkBasicSlicer
56   creaVtk
57   creaFilesFromDirectory
58   )
59
60
61 OPTION(CREA_BUILD_SHARED "Build CREA as a shared library (dynamic) ?" ON)
62 IF (CREA_BUILD_SHARED)
63   SET(CREA_BUILD_SHARED SHARED)
64   CREA_DEFINE(CREA_BUILD_SHARED)
65 ENDIF(CREA_BUILD_SHARED)
66
67 CREA_DEFINE(CREA_EXPORT_SYMBOLS)
68
69 ADD_LIBRARY(crea ${CREA_BUILD_SHARED} ${SRCS})
70
71 TARGET_LINK_LIBRARIES(crea
72   ${WXWIDGETS_LIBRARIES}
73   ${VTK_LIBRARIES}
74   ${BOOST_LIBRARIES}  
75 )
76
77 SET_TARGET_PROPERTIES(crea PROPERTIES ${CREA_LIBRARY_PROPERTIES})
78
79 #
80 #  ${GDCM_LIBRARIES}
81 #  ${SQLITE_LIBRARIES})
82
83 #SET_TARGET_PROPERTIES(CreaImageIO PROPERTIES 
84 #  COMPILE_FLAGS -pg 
85 #  LINK_FLAGS_DEBUG -pg)
86
87 #----------------------------------------------------------------------------
88 # INSTALLS LIBRARY
89 FILE(GLOB crea_HEADERS "*.h" "*.txx")
90 INSTALL(
91   FILES ${crea_HEADERS}
92   DESTINATION include/crea
93   )  
94 INSTALL(
95   FILES ${CMAKE_CURRENT_BINARY_DIR}/creaConfigure.h
96   DESTINATION include/crea
97   )  
98
99 INSTALL(
100   TARGETS crea
101   DESTINATION ${CREA_LIB_PATH})
102 #----------------------------------------------------------------------------
103 MESSAGE(STATUS "===============================================")