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