Salome HOME
Update copyrights
[modules/gui.git] / src / TreeData / CMakeLists.txt
1 # Copyright (C) 2012-2019  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 INCLUDE(UseQtExt)
21
22 ADD_SUBDIRECTORY(Test)
23
24 # --- options ---
25
26 # additional include directories
27 INCLUDE_DIRECTORIES(
28   ${QT_INCLUDES}
29   ${OMNIORB_INCLUDE_DIR}
30   ${Boost_INCLUDE_DIRS}
31   ${PTHREAD_INCLUDE_DIR}
32   ${PROJECT_SOURCE_DIR}/src/CAM
33   ${PROJECT_SOURCE_DIR}/src/GuiHelpers
34   ${PROJECT_SOURCE_DIR}/src/LightApp
35   ${PROJECT_SOURCE_DIR}/src/ObjBrowser
36   ${PROJECT_SOURCE_DIR}/src/Qtx
37   ${PROJECT_SOURCE_DIR}/src/STD
38   ${PROJECT_SOURCE_DIR}/src/SUIT
39   ${PROJECT_SOURCE_DIR}/src/SalomeApp
40 )
41
42 # additional preprocessor / compiler flags
43 ADD_DEFINITIONS(
44   ${QT_DEFINITIONS}
45   ${BOOST_DEFINITIONS}
46   ${OMNIORB_DEFINITIONS}
47 )
48
49 # libraries to link to
50 SET(_link_LIBRARIES
51   ${OMNIORB_LIBRARIES}
52   ${QT_LIBRARIES}
53   ${KERNEL_SalomeLifeCycleCORBA} ${KERNEL_SalomeKernelHelpers}
54   qtx suit std CAM ObjBrowser LightApp SalomeApp 
55 )
56
57 # --- headers ---
58
59 # header files / to be processed by moc
60 SET(_moc_HEADERS   
61   TreeModel.hxx
62   TreeObserver.hxx
63   TreeView.hxx
64 )
65
66 # header files / no moc processing
67 SET(_other_HEADERS
68   DataModel.hxx
69   DataObject.hxx
70   DataProcessor.hxx
71   DockWidgets.hxx
72   TreeData.hxx
73   TreeGuiManager.hxx
74   TreeItem.hxx
75 )
76
77 # header files / to install
78 SET(SalomeTreeData_HEADERS ${_moc_HEADERS} ${_other_HEADERS})
79
80 # --- sources ---
81
82 # sources / moc wrappings
83 QT_WRAP_MOC(_moc_SOURCES ${_moc_HEADERS})
84
85 # sources / static
86 SET(_other_SOURCES
87   DataModel.cxx
88   DataObject.cxx
89   DataProcessor.cxx
90   DockWidgets.cxx
91   TreeGuiManager.cxx
92   TreeItem.cxx
93   TreeModel.cxx
94   TreeObserver.cxx
95   TreeView.cxx
96 )
97
98 # sources / to compile
99 SET(SalomeTreeData_SOURCES ${_other_SOURCES} ${_moc_SOURCES})
100
101 # --- rules ---
102
103 ADD_LIBRARY(SalomeTreeData ${SalomeTreeData_SOURCES})
104 TARGET_LINK_LIBRARIES(SalomeTreeData ${_link_LIBRARIES})
105 INSTALL(TARGETS SalomeTreeData EXPORT ${PROJECT_NAME}TargetGroup DESTINATION ${SALOME_INSTALL_LIBS})
106
107 INSTALL(FILES ${SalomeTreeData_HEADERS} DESTINATION ${SALOME_INSTALL_HEADERS})