Salome HOME
INT PAL 0052683: Parameter "Color group" in the "Create Group" dialog box is empty
[modules/smesh.git] / src / OBJECT / CMakeLists.txt
1 # Copyright (C) 2012-2015  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   ${QT_INCLUDES}
24   ${KERNEL_INCLUDE_DIRS}
25   ${GUI_INCLUDE_DIRS}
26   ${MEDFILE_INCLUDE_DIRS}
27   ${QWT_INCLUDE_DIR}
28   ${GEOM_INCLUDE_DIRS}
29   ${CAS_INCLUDE_DIRS}
30   ${VTK_INCLUDE_DIRS}
31   ${OMNIORB_INCLUDE_DIR}
32   ${Boost_INCLUDE_DIRS}
33   ${PROJECT_SOURCE_DIR}/src/Controls
34   ${PROJECT_SOURCE_DIR}/src/SMDS
35   ${PROJECT_SOURCE_DIR}/src/SMESHDS
36   ${PROJECT_SOURCE_DIR}/src/Driver
37   ${PROJECT_SOURCE_DIR}/src/DriverMED
38   ${PROJECT_SOURCE_DIR}/src/SMESH
39   ${PROJECT_SOURCE_DIR}/src/SMESHClient
40   ${PROJECT_SOURCE_DIR}/src/SMESHUtils
41   ${PROJECT_BINARY_DIR}/idl
42 )
43
44 # additional preprocessor / compiler flags
45 ADD_DEFINITIONS(
46   ${CAS_DEFINITIONS}
47   ${BOOST_DEFINITIONS}
48   ${OMNIORB_DEFINITIONS}
49 )
50
51 # libraries to link to
52 SET(_link_LIBRARIES
53   ${QT_LIBRARIES}
54   ${VTK_LIBRARIES}
55   ${CAS_KERNEL}
56   ${GEOM_GEOMObject}
57   ${GUI_SalomeApp}
58   ${GUI_SalomeObject}
59   ${GUI_SVTK}
60   ${GUI_VTKViewer}
61   ${GUI_qtx}
62   ${GUI_suit}
63   ${GUI_std}
64   ${GUI_Plot2d}
65   ${GUI_SPlot2d}
66   SMESHClient
67   SMDS
68   SMESHControls
69 )
70
71 # --- headers ---
72
73 # header files / no moc processing
74 SET(SMESHObject_HEADERS
75   SMESH_Actor.h
76   SMESH_Object.h
77   SMESH_ObjectDef.h
78   SMESH_ActorUtils.h
79   SMESH_ActorDef.h
80   SMESH_DeviceActor.h
81   SMESH_PreviewActorsCollection.h
82   SMESH_ExtractGeometry.h
83   SMESH_FaceOrientationFilter.h
84   SMESH_ScalarBarActor.h
85   SMESH_NodeLabelActor.h
86   SMESH_CellLabelActor.h
87   SMESH_SVTKActor.h 
88 )
89
90 # --- sources ---
91
92 # sources / static
93 SET(SMESHObject_SOURCES
94   SMESH_Object.cxx
95   SMESH_DeviceActor.cxx
96   SMESH_Actor.cxx
97   SMESH_PreviewActorsCollection.cxx
98   SMESH_ExtractGeometry.cxx
99   SMESH_ActorUtils.cxx
100   SMESH_FaceOrientationFilter.cxx
101   SMESH_ScalarBarActor.cxx
102   SMESH_NodeLabelActor.cxx
103   SMESH_CellLabelActor.cxx
104   SMESH_SVTKActor.cxx 
105 )
106
107 # --- rules ---
108
109 ADD_LIBRARY(SMESHObject ${SMESHObject_SOURCES})
110 TARGET_LINK_LIBRARIES(SMESHObject ${_link_LIBRARIES} )
111 INSTALL(TARGETS SMESHObject EXPORT ${PROJECT_NAME}TargetGroup DESTINATION ${SALOME_INSTALL_LIBS})
112
113 INSTALL(FILES ${SMESHObject_HEADERS} DESTINATION ${SALOME_INSTALL_HEADERS})