Salome HOME
Merge remote branch 'origin/V8_5_asterstudy'
[modules/smesh.git] / src / OBJECT / 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 # --- options ---
21 # additional include directories
22 INCLUDE_DIRECTORIES(
23   ${KERNEL_INCLUDE_DIRS}
24   ${GUI_INCLUDE_DIRS}
25   ${MEDFILE_INCLUDE_DIRS}
26   ${QWT_INCLUDE_DIR}
27   ${GEOM_INCLUDE_DIRS}
28   ${OpenCASCADE_INCLUDE_DIR}
29   ${VTK_INCLUDE_DIRS}
30   ${OMNIORB_INCLUDE_DIR}
31   ${Boost_INCLUDE_DIRS}
32   ${PROJECT_SOURCE_DIR}/src/Controls
33   ${PROJECT_SOURCE_DIR}/src/SMDS
34   ${PROJECT_SOURCE_DIR}/src/SMESHDS
35   ${PROJECT_SOURCE_DIR}/src/Driver
36   ${PROJECT_SOURCE_DIR}/src/DriverMED
37   ${PROJECT_SOURCE_DIR}/src/SMESH
38   ${PROJECT_SOURCE_DIR}/src/SMESHClient
39   ${PROJECT_SOURCE_DIR}/src/SMESHUtils
40   ${PROJECT_BINARY_DIR}/idl
41 )
42
43 # additional preprocessor / compiler flags
44 ADD_DEFINITIONS(
45   ${OpenCASCADE_DEFINITIONS}
46   ${BOOST_DEFINITIONS}
47   ${OMNIORB_DEFINITIONS}
48 )
49
50 # libraries to link to
51 SET(_link_LIBRARIES
52   ${QT_LIBRARIES}
53   ${VTK_LIBRARIES}
54   ${OpenCASCADE_KERNEL}
55   ${GEOM_GEOMObject}
56   ${GUI_SalomeApp}
57   ${GUI_SalomeObject}
58   ${GUI_SVTK}
59   ${GUI_VTKViewer}
60   ${GUI_qtx}
61   ${GUI_suit}
62   ${GUI_std}
63   SMESHClient
64   SMDS
65   SMESHControls
66 )
67
68 IF(SALOME_USE_PLOT2DVIEWER)
69   LIST(APPEND _link_LIBRARIES
70     ${GUI_Plot2d}
71     ${GUI_SPlot2d}
72     )
73 ENDIF()
74
75 # --- headers ---
76
77 # header files / no moc processing
78 SET(SMESHObject_HEADERS
79   SMESH_Actor.h
80   SMESH_Object.h
81   SMESH_ObjectDef.h
82   SMESH_ActorProps.h
83   SMESH_ActorUtils.h
84   SMESH_ActorDef.h
85   SMESH_DeviceActor.h
86   SMESH_PreviewActorsCollection.h
87   SMESH_ExtractGeometry.h
88   SMESH_FaceOrientationFilter.h
89   SMESH_ScalarBarActor.h
90   SMESH_NodeLabelActor.h
91   SMESH_CellLabelActor.h
92   SMESH_SVTKActor.h 
93 )
94
95 # --- sources ---
96
97 # sources / static
98 SET(SMESHObject_SOURCES
99   SMESH_Object.cxx
100   SMESH_DeviceActor.cxx
101   SMESH_Actor.cxx
102   SMESH_ActorProps.cxx
103   SMESH_PreviewActorsCollection.cxx
104   SMESH_ExtractGeometry.cxx
105   SMESH_ActorUtils.cxx
106   SMESH_FaceOrientationFilter.cxx
107   SMESH_ScalarBarActor.cxx
108   SMESH_NodeLabelActor.cxx
109   SMESH_CellLabelActor.cxx
110   SMESH_SVTKActor.cxx 
111 )
112
113 # --- rules ---
114
115 ADD_LIBRARY(SMESHObject ${SMESHObject_SOURCES})
116 TARGET_LINK_LIBRARIES(SMESHObject ${_link_LIBRARIES} )
117 INSTALL(TARGETS SMESHObject EXPORT ${PROJECT_NAME}TargetGroup DESTINATION ${SALOME_INSTALL_LIBS})
118
119 INSTALL(FILES ${SMESHObject_HEADERS} DESTINATION ${SALOME_INSTALL_HEADERS})