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