Salome HOME
7a7b4e92e5b8674c80e1683d1d3ee1ab1e6bfb57
[modules/smesh.git] / src / SMESHClient / 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 # --- 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   ${VTK_INCLUDE_DIRS}
28   ${CAS_INCLUDE_DIRS}
29   ${OMNIORB_INCLUDE_DIR}
30   ${PROJECT_SOURCE_DIR}/src/Controls
31   ${PROJECT_SOURCE_DIR}/src/Driver
32   ${PROJECT_SOURCE_DIR}/src/DriverDAT
33   ${PROJECT_SOURCE_DIR}/src/DriverMED
34   ${PROJECT_SOURCE_DIR}/src/DriverUNV
35   ${PROJECT_SOURCE_DIR}/src/DriverSTL
36   ${PROJECT_SOURCE_DIR}/src/SMDS
37   ${PROJECT_SOURCE_DIR}/src/SMESHDS
38   ${PROJECT_SOURCE_DIR}/src/SMESH
39   ${PROJECT_SOURCE_DIR}/src/SMESHUtils
40   ${PROJECT_BINARY_DIR}/idl
41 )
42
43 # additional preprocessor / compiler flags
44 ADD_DEFINITIONS(
45   ${OMNIORB_DEFINITIONS}
46   ${CAS_DEFINITIONS}
47   ${BOOST_DEFINITIONS}
48 )
49
50 # libraries to link to
51 SET(_link_LIBRARIES
52   ${KERNEL_SalomeLifeCycleCORBA}
53   ${KERNEL_SalomeNS}
54   ${KERNEL_OpUtil}
55   ${KERNEL_SALOMEBasics}
56   ${KERNEL_SalomeContainer}
57   ${KERNEL_SalomeHDFPersist}
58   ${KERNEL_SalomeGenericObj}
59   ${KERNEL_Registry}
60   ${KERNEL_ResourcesManager}
61   ${KERNEL_SalomeResourcesManager}
62   ${KERNEL_SalomeNotification}
63   ${KERNEL_SalomeIDLKERNEL}
64   ${KERNEL_SALOMELocalTrace}
65   ${GEOM_NMTDS}
66   ${GEOM_SalomeIDLGEOM}  
67   ${CAS_KERNEL}
68   SalomeIDLSMESH
69   SMDS
70   SMESHimpl
71   SMESHDS
72   SMESHControls
73   MEDWrapper
74   MEDWrapperBase
75   MEDWrapper_V2_2
76 )
77
78 # --- headers ---
79
80 # header files / no moc processing
81 SET(SMESHClient_HEADERS
82   SMESH_Client.hxx
83 )
84
85 # --- sources ---
86
87 # sources / static
88 SET(SMESHClient_SOURCES
89   SMESH_Client.cxx
90 )
91
92 # bin programs
93 SET(SMESHClientBin_SOURCES
94   SMESHClientBin.cxx
95 )
96
97 # --- rules ---
98
99 ADD_LIBRARY(SMESHClient ${SMESHClient_SOURCES})
100 TARGET_LINK_LIBRARIES(SMESHClient ${_link_LIBRARIES} )
101 INSTALL(TARGETS SMESHClient EXPORT ${PROJECT_NAME}TargetGroup DESTINATION ${SALOME_INSTALL_LIBS})
102
103 ADD_EXECUTABLE(SMESHClientBin ${SMESHClientBin_SOURCES})
104 TARGET_LINK_LIBRARIES(SMESHClientBin ${_link_LIBRARIES})
105 INSTALL(TARGETS SMESHClientBin EXPORT ${PROJECT_NAME}TargetGroup DESTINATION ${SALOME_INSTALL_BINS})
106
107 INSTALL(FILES ${SMESHClient_HEADERS} DESTINATION ${SALOME_INSTALL_HEADERS})