]> Creatis software - bbtkGEditor.git/blob - appli/bbEditor/CMakeLists.txt
Feature #1771 Add licence terms for all files.
[bbtkGEditor.git] / appli / bbEditor / 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
25 #OPTION(BUILD_bbi_GRAPHICAL "Build bbi in graphical mode (requires wxWidgets)" OFF)
26 #SWITCH_ON_IF_ALL_BUILD(BUILD_bbi_GRAPHICAL)
27 #IF (BUILD_bbi_GRAPHICAL)
28 #  SET(USE_WXWIDGETS ON CACHE BOOL "Use WxWidgets" FORCE)
29 #ENDIF (BUILD_bbi_GRAPHICAL)
30
31
32 SET(SOURCES
33   bbEditor
34   )
35
36 INCLUDE_DIRECTORIES(../../lib/EditorGraphicBBS/bbsWxGUIEditorGraphic)
37 INCLUDE_DIRECTORIES(../../lib/EditorGraphicBBS/bbsKernelEditorGraphic)
38 INCLUDE_DIRECTORIES(../../lib/EditorGraphicBBS/bbsVtkGUIEditorGraphic)
39 INCLUDE_DIRECTORIES(../../data/icons)
40
41 IF(BBTK_USE_WXWIDGETS AND WIN32)
42   ADD_EXECUTABLE(bbEditor WIN32 ${SOURCES})  
43   SET_TARGET_PROPERTIES(bbEditor PROPERTIES LINK_FLAGS /subsystem:console )
44 ELSE(BBTK_USE_WXWIDGETS AND WIN32)
45   ADD_EXECUTABLE(bbEditor MACOSX_BUNDLE ${SOURCES}  )  
46 ENDIF(BBTK_USE_WXWIDGETS AND WIN32)
47
48
49
50 TARGET_LINK_LIBRARIES(bbEditor 
51                                 ${WXWIDGETS_LIBRARIES}
52                                 ${VTK_LIBRARIES} 
53                                 crea
54                                 ${creaMaracasVisu_LIBRARIES} 
55                                 ${BBTK_LIBRARIES}
56                                 bbsWxGUIEditorGraphic
57                                 bbsKernelEditorGraphic
58                                 bbsVtkGUIEditorGraphic
59
60                                 ${WXWIDGETS_LIBRARIES}
61                         )
62
63 INSTALL_TARGETS(/bin/ bbEditor)