Salome HOME
Merge changes from 'master' branch.
[modules/kernel.git] / src / SALOMEDS / CMakeLists.txt
1 # Copyright (C) 2012-2016  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_DIRECTORIES(
21   ${PTHREAD_INCLUDE_DIR}
22   ${OMNIORB_INCLUDE_DIR}
23   ${HDF5_INCLUDE_DIRS}
24   ${Boost_INCLUDE_DIR}
25   ${PROJECT_BINARY_DIR}/salome_adm
26   ${CMAKE_CURRENT_SOURCE_DIR}/../HDFPersist
27   ${CMAKE_CURRENT_SOURCE_DIR}/../Basics
28   ${CMAKE_CURRENT_SOURCE_DIR}/../SALOMELocalTrace
29   ${CMAKE_CURRENT_SOURCE_DIR}/../KernelHelpers
30   ${CMAKE_CURRENT_SOURCE_DIR}/../Utils
31   ${CMAKE_CURRENT_SOURCE_DIR}/../DF
32   ${CMAKE_CURRENT_SOURCE_DIR}/../SALOMEDSImpl
33   ${CMAKE_CURRENT_SOURCE_DIR}/../NamingService
34   ${CMAKE_CURRENT_SOURCE_DIR}/../GenericObj
35   ${CMAKE_CURRENT_SOURCE_DIR}/../SALOMEDSClient
36   ${CMAKE_CURRENT_SOURCE_DIR}/../LifeCycleCORBA
37   ${CMAKE_CURRENT_SOURCE_DIR}/../TOOLSDS
38   ${CMAKE_CURRENT_SOURCE_DIR}/../Container
39   ${PROJECT_BINARY_DIR}/idl
40 )
41
42 ADD_DEFINITIONS(${OMNIORB_DEFINITIONS} ${HDF5_DEFINITIONS} ${BOOST_DEFINITIONS})
43 IF(WIN32)
44   ADD_DEFINITIONS(-DNOGDI)
45 ENDIF(WIN32)
46
47 SET(COMMON_LIBS
48   TOOLSDS
49   SalomeNS
50   OpUtil
51   SALOMELocalTrace
52   SALOMEBasics
53   SalomeHDFPersist
54   SalomeKernelHelpers
55   DF
56   SalomeDSImpl
57   SalomeGenericObj
58   SalomeLifeCycleCORBA
59   SalomeIDLKernel
60   SalomeDSClient
61   ${HDF5_C_LIBRARIES}
62 )
63
64 SET(SalomeDS_SOURCES
65   SALOMEDS.cxx
66   SALOMEDS_Driver_i.cxx
67   SALOMEDS_UseCaseBuilder_i.cxx
68   SALOMEDS_UseCaseIterator_i.cxx
69   SALOMEDS_ChildIterator_i.cxx
70   SALOMEDS_SComponentIterator_i.cxx
71   SALOMEDS_Study_i.cxx
72   SALOMEDS_StudyBuilder_i.cxx
73   SALOMEDS_SObject_i.cxx
74   SALOMEDS_SComponent_i.cxx
75   SALOMEDS_GenericAttribute_i.cxx
76   SALOMEDS_AttributeComment_i.cxx
77   SALOMEDS_AttributeExternalFileDef_i.cxx
78   SALOMEDS_AttributeFileType_i.cxx
79   SALOMEDS_AttributeIOR_i.cxx
80   SALOMEDS_AttributeInteger_i.cxx
81   SALOMEDS_AttributeName_i.cxx
82   SALOMEDS_AttributePersistentRef_i.cxx
83   SALOMEDS_AttributeReal_i.cxx
84   SALOMEDS_AttributeSequenceOfReal_i.cxx
85   SALOMEDS_AttributeSequenceOfInteger_i.cxx
86   SALOMEDS_AttributeDrawable_i.cxx
87   SALOMEDS_AttributeSelectable_i.cxx
88   SALOMEDS_AttributeOpened_i.cxx
89   SALOMEDS_AttributeFlags_i.cxx
90   SALOMEDS_AttributeGraphic_i.cxx
91   SALOMEDS_AttributeExpandable_i.cxx
92   SALOMEDS_AttributeTextColor_i.cxx
93   SALOMEDS_AttributeTextHighlightColor_i.cxx
94   SALOMEDS_AttributePixMap_i.cxx
95   SALOMEDS_AttributeTreeNode_i.cxx
96   SALOMEDS_AttributeLocalID_i.cxx
97   SALOMEDS_AttributeUserID_i.cxx
98   SALOMEDS_AttributeTarget_i.cxx
99   SALOMEDS_AttributeTableOfInteger_i.cxx
100   SALOMEDS_AttributeTableOfReal_i.cxx
101   SALOMEDS_AttributeTableOfString_i.cxx
102   SALOMEDS_AttributeStudyProperties_i.cxx
103   SALOMEDS_AttributePythonObject_i.cxx
104   SALOMEDS_AttributeParameter_i.cxx
105   SALOMEDS_AttributeString_i.cxx
106   SALOMEDS_SObject.cxx
107   SALOMEDS_SComponent.cxx
108   SALOMEDS_GenericAttribute.cxx
109   SALOMEDS_ChildIterator.cxx
110   SALOMEDS_SComponentIterator.cxx
111   SALOMEDS_UseCaseIterator.cxx
112   SALOMEDS_UseCaseBuilder.cxx
113   SALOMEDS_StudyBuilder.cxx
114   SALOMEDS_Study.cxx
115   SALOMEDS_AttributeStudyProperties.cxx
116   SALOMEDS_AttributeComment.cxx
117   SALOMEDS_AttributeDrawable.cxx
118   SALOMEDS_AttributeExpandable.cxx
119   SALOMEDS_AttributeExternalFileDef.cxx
120   SALOMEDS_AttributeFileType.cxx
121   SALOMEDS_AttributeFlags.cxx
122   SALOMEDS_AttributeGraphic.cxx
123   SALOMEDS_AttributeIOR.cxx
124   SALOMEDS_AttributeInteger.cxx
125   SALOMEDS_AttributeLocalID.cxx
126   SALOMEDS_AttributeName.cxx
127   SALOMEDS_AttributeOpened.cxx
128   SALOMEDS_AttributePythonObject.cxx
129   SALOMEDS_AttributeReal.cxx
130   SALOMEDS_AttributeSelectable.cxx
131   SALOMEDS_AttributeSequenceOfInteger.cxx
132   SALOMEDS_AttributePersistentRef.cxx
133   SALOMEDS_AttributePixMap.cxx
134   SALOMEDS_AttributeSequenceOfReal.cxx
135   SALOMEDS_AttributeTableOfInteger.cxx
136   SALOMEDS_AttributeTableOfReal.cxx
137   SALOMEDS_AttributeTableOfString.cxx
138   SALOMEDS_AttributeTarget.cxx
139   SALOMEDS_AttributeTextColor.cxx
140   SALOMEDS_AttributeTextHighlightColor.cxx
141   SALOMEDS_AttributeTreeNode.cxx
142   SALOMEDS_AttributeUserID.cxx
143   SALOMEDS_TMPFile_i.cxx
144   SALOMEDS_AttributeParameter.cxx
145   SALOMEDS_AttributeString.cxx
146   SALOMEDS_IParameters.cxx
147 )
148
149
150 ADD_LIBRARY(SalomeDS ${SalomeDS_SOURCES})
151 TARGET_LINK_LIBRARIES(SalomeDS ${COMMON_LIBS})
152 INSTALL(TARGETS SalomeDS EXPORT ${PROJECT_NAME}TargetGroup DESTINATION ${SALOME_INSTALL_LIBS})
153
154 ADD_EXECUTABLE(SALOMEDS_Server SALOMEDS_Server.cxx)
155 TARGET_LINK_LIBRARIES(SALOMEDS_Server SalomeDS SALOMEBasics ${COMMON_LIBS} ${OMNIORB_LIBRARIES})
156
157 ADD_EXECUTABLE(SALOMEDS_Client SALOMEDS_Client.cxx)
158 TARGET_LINK_LIBRARIES(SALOMEDS_Client SalomeDS SALOMEBasics ${COMMON_LIBS} ${OMNIORB_LIBRARIES})
159
160 INSTALL(TARGETS SALOMEDS_Server SALOMEDS_Client
161       EXPORT ${PROJECT_NAME}TargetGroup
162       DESTINATION ${SALOME_INSTALL_BINS})
163
164 # Executable scripts to be installed
165 SALOME_INSTALL_SCRIPTS(SALOME_DriverPy.py ${SALOME_INSTALL_SCRIPT_PYTHON})
166
167 SET(COMMON_HEADERS_HXX
168   SALOMEDS_Driver_i.hxx
169   SALOMEDS_Study_i.hxx
170   SALOMEDS_Study.hxx
171   SALOMEDS_SObject_i.hxx
172   SALOMEDS_SObject.hxx
173   SALOMEDS_SComponent_i.hxx
174   SALOMEDS_SComponent.hxx
175   SALOMEDS_GenericAttribute_i.hxx
176   SALOMEDS_GenericAttribute.hxx
177   SALOMEDS_IParameters.hxx
178   SALOMEDS_Defines.hxx
179   SALOMEDS_wrap.hxx
180   SALOMEDS_Attributes_wrap.hxx
181 )
182 INSTALL(FILES ${COMMON_HEADERS_HXX} DESTINATION ${SALOME_INSTALL_HEADERS})