Salome HOME
Merge from V6_main 01/04/2013
[modules/kernel.git] / src / Communication / 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 INCLUDE_DIRECTORIES(
21   ${PTHREAD_INCLUDE_DIRS}
22   ${OMNIORB_INCLUDE_DIR}
23   ${MPI_CXX_INCLUDE_PATH}
24   ${PYTHON_INCLUDE_DIRS}
25   ${CMAKE_BINARY_DIR}/salome_adm
26   ${CMAKE_CURRENT_SOURCE_DIR}/../Basics
27   ${CMAKE_CURRENT_SOURCE_DIR}/../SALOMELocalTrace
28   ${CMAKE_CURRENT_SOURCE_DIR}/../Utils
29   ${CMAKE_BINARY_DIR}/idl
30 )
31
32 SET(COMMON_LIBS
33   OpUtil
34   SALOMELocalTrace
35   SalomeIDLKernel
36   ${PYTHON_LIBRARIES}
37   ${MPI_CXX_LIBRARIES}
38 )
39
40 SET(SalomeCommunication_SOURCES
41   SALOME_Comm_i.cxx
42   SALOME_Matrix_i.cxx
43   SenderFactory.cxx
44   MultiCommException.cxx
45   SALOMEMultiComm.cxx
46   ReceiverFactory.cxx
47   MatrixClient.cxx
48 )
49
50 ADD_DEFINITIONS(${OMNIORB_DEFINITIONS} ${MPI_CXX_COMPILE_FLAGS})
51
52 ADD_LIBRARY(SalomeCommunication ${SalomeCommunication_SOURCES})
53 TARGET_LINK_LIBRARIES(SalomeCommunication ${COMMON_LIBS})
54 INSTALL(TARGETS SalomeCommunication DESTINATION ${KERNEL_salomelib_LIBS})
55
56 SET(COMMON_HEADERS_HXX
57   MatrixClient.hxx
58   MultiCommException.hxx
59   Receiver.hxx
60   ReceiverFactory.hxx
61   Receivers.hxx
62   SALOMEMultiComm.hxx
63   SALOME_Comm_i.hxx
64   SALOME_Communication.hxx
65   SALOME_Matrix_i.hxx
66   SenderFactory.hxx
67 )
68
69 INSTALL(FILES ${COMMON_HEADERS_HXX} DESTINATION ${KERNEL_salomeinclude_HEADERS})