Salome HOME
Copyright update 2020
[modules/smesh.git] / src / SMESHClient / CMakeLists.txt
1 # Copyright (C) 2012-2020  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 # --- options ---
21 # additional include directories
22 INCLUDE_DIRECTORIES(
23   ${KERNEL_INCLUDE_DIRS}
24   ${MEDFILE_INCLUDE_DIRS}
25   ${GEOM_INCLUDE_DIRS}
26   ${Boost_INCLUDE_DIRS}
27   ${OpenCASCADE_INCLUDE_DIR}
28   ${OMNIORB_INCLUDE_DIR}
29   ${PROJECT_SOURCE_DIR}/src/Controls
30   ${PROJECT_SOURCE_DIR}/src/Driver
31   ${PROJECT_SOURCE_DIR}/src/DriverDAT
32   ${PROJECT_SOURCE_DIR}/src/DriverMED
33   ${PROJECT_SOURCE_DIR}/src/DriverUNV
34   ${PROJECT_SOURCE_DIR}/src/DriverSTL
35   ${PROJECT_SOURCE_DIR}/src/SMDS
36   ${PROJECT_SOURCE_DIR}/src/SMESHDS
37   ${PROJECT_SOURCE_DIR}/src/SMESH
38   ${PROJECT_SOURCE_DIR}/src/SMESHUtils
39   ${PROJECT_BINARY_DIR}/idl
40 )
41
42 # additional preprocessor / compiler flags
43 ADD_DEFINITIONS(
44   ${OMNIORB_DEFINITIONS}
45   ${OpenCASCADE_DEFINITIONS}
46   ${BOOST_DEFINITIONS}
47 )
48
49 # libraries to link to
50 SET(_link_LIBRARIES
51   ${KERNEL_SalomeLifeCycleCORBA}
52   ${KERNEL_SalomeNS}
53   ${KERNEL_OpUtil}
54   ${KERNEL_SALOMEBasics}
55   ${KERNEL_SalomeContainer}
56   ${KERNEL_SalomeHDFPersist}
57   ${KERNEL_SalomeGenericObj}
58   ${KERNEL_Registry}
59   ${KERNEL_ResourcesManager}
60   ${KERNEL_SalomeResourcesManager}
61   ${KERNEL_SalomeNotification}
62   ${KERNEL_SalomeIDLKERNEL}
63   ${KERNEL_SALOMELocalTrace}
64   ${GEOM_NMTDS}
65   ${GEOM_SalomeIDLGEOM}  
66   ${OpenCASCADE_KERNEL}
67   SalomeIDLSMESH
68   SMDS
69   SMESHimpl
70   SMESHDS
71   SMESHControls
72   MEDWrapper
73 )
74
75 # --- headers ---
76
77 # header files / no moc processing
78 SET(SMESHClient_HEADERS
79   SMESH_Client.hxx
80 )
81
82 # --- sources ---
83
84 # sources / static
85 SET(SMESHClient_SOURCES
86   SMESH_Client.cxx
87 )
88
89 # --- rules ---
90
91 ADD_LIBRARY(SMESHClient ${SMESHClient_SOURCES})
92 TARGET_LINK_LIBRARIES(SMESHClient ${_link_LIBRARIES} )
93 INSTALL(TARGETS SMESHClient EXPORT ${PROJECT_NAME}TargetGroup DESTINATION ${SALOME_INSTALL_LIBS})
94
95
96 INSTALL(FILES ${SMESHClient_HEADERS} DESTINATION ${SALOME_INSTALL_HEADERS})