Salome HOME
Merge branch V7_3_1_BR
[modules/gui.git] / src / TreeData / CMakeLists.txt
1 # Copyright (C) 2012-2014  CEA/DEN, EDF R&D, OPEN CASCADE
2 #
3 # This library is free software; you can redistribute it and/or
4 # modify it under the terms of the GNU Lesser General Public
5 # License as published by the Free Software Foundation; either
6 # version 2.1 of the License, or (at your option) any later version.
7 #
8 # This library is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 # Lesser General Public License for more details.
12 #
13 # You should have received a copy of the GNU Lesser General Public
14 # License along with this library; if not, write to the Free Software
15 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 #
17 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 #
19
20 ADD_SUBDIRECTORY(Test)
21
22 INCLUDE(UseQt4Ext)
23
24 # --- options ---
25
26 # additional include directories
27 INCLUDE_DIRECTORIES(
28   ${CAS_INCLUDE_DIRS}
29   ${QT_INCLUDES}
30   ${OMNIORB_INCLUDE_DIR}
31   ${Boost_INCLUDE_DIRS}
32   ${PTHREAD_INCLUDE_DIR}
33   ${PROJECT_SOURCE_DIR}/src/CAM
34   ${PROJECT_SOURCE_DIR}/src/GuiHelpers
35   ${PROJECT_SOURCE_DIR}/src/LightApp
36   ${PROJECT_SOURCE_DIR}/src/ObjBrowser
37   ${PROJECT_SOURCE_DIR}/src/Qtx
38   ${PROJECT_SOURCE_DIR}/src/STD
39   ${PROJECT_SOURCE_DIR}/src/SUIT
40   ${PROJECT_SOURCE_DIR}/src/SalomeApp
41 )
42
43 # additional preprocessor / compiler flags
44 ADD_DEFINITIONS(
45   ${CAS_DEFINITIONS}
46   ${QT_DEFINITIONS}
47   ${BOOST_DEFINITIONS}
48   ${OMNIORB_DEFINITIONS}
49 )
50
51 # libraries to link to
52 SET(_link_LIBRARIES
53   ${OMNIORB_LIBRARIES}
54   ${QT_LIBRARIES}
55   ${KERNEL_SalomeLifeCycleCORBA} ${KERNEL_SalomeKernelHelpers}
56   qtx suit std CAM ObjBrowser LightApp SalomeApp 
57 )
58
59 # --- headers ---
60
61 # header files / to be processed by moc
62 SET(_moc_HEADERS   
63   TreeModel.hxx
64   TreeObserver.hxx
65   TreeView.hxx
66 )
67
68 # header files / no moc processing
69 SET(_other_HEADERS
70   DataModel.hxx
71   DataObject.hxx
72   DataProcessor.hxx
73   DockWidgets.hxx
74   TreeData.hxx
75   TreeGuiManager.hxx
76   TreeItem.hxx
77 )
78
79 # header files / to install
80 SET(SalomeTreeData_HEADERS ${_moc_HEADERS} ${_other_HEADERS})
81
82 # --- sources ---
83
84 # sources / moc wrappings
85 QT4_WRAP_CPP(_moc_SOURCES ${_moc_HEADERS})
86
87 # sources / static
88 SET(_other_SOURCES
89   DataModel.cxx
90   DataObject.cxx
91   DataProcessor.cxx
92   DockWidgets.cxx
93   TreeGuiManager.cxx
94   TreeItem.cxx
95   TreeModel.cxx
96   TreeObserver.cxx
97   TreeView.cxx
98 )
99
100 # sources / to compile
101 SET(SalomeTreeData_SOURCES ${_other_SOURCES} ${_moc_SOURCES})
102
103 # --- rules ---
104
105 ADD_LIBRARY(SalomeTreeData ${SalomeTreeData_SOURCES})
106 TARGET_LINK_LIBRARIES(SalomeTreeData ${_link_LIBRARIES})
107 INSTALL(TARGETS SalomeTreeData EXPORT ${PROJECT_NAME}TargetGroup DESTINATION ${SALOME_INSTALL_LIBS})
108
109 INSTALL(FILES ${SalomeTreeData_HEADERS} DESTINATION ${SALOME_INSTALL_HEADERS})