Salome HOME
#24666 [CEA][Windows] BLSURPLUGIN compilation issue
[modules/smesh.git] / src / SMESH_I / CMakeLists.txt
1 # Copyright (C) 2012-2021  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   ${OMNIORB_INCLUDE_DIR}
24   ${OpenCASCADE_INCLUDE_DIR}
25   ${HDF5_INCLUDE_DIRS}
26   ${MEDFILE_INCLUDE_DIRS}
27   ${Boost_INCLUDE_DIRS}
28   ${KERNEL_INCLUDE_DIRS}
29   ${GUI_INCLUDE_DIRS}
30   ${GEOM_INCLUDE_DIRS}
31   ${MEDCOUPLING_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/SMESH_I
36   ${PROJECT_SOURCE_DIR}/src/MEDWrapper
37   ${PROJECT_SOURCE_DIR}/src/Driver
38   ${PROJECT_SOURCE_DIR}/src/DriverMED
39   ${PROJECT_SOURCE_DIR}/src/DriverCGNS
40   ${PROJECT_SOURCE_DIR}/src/SMESH
41   ${PROJECT_SOURCE_DIR}/src/SMESHUtils
42   ${PROJECT_BINARY_DIR}
43   ${PROJECT_BINARY_DIR}/idl
44 )
45
46 # additional preprocessor / compiler flags
47 ADD_DEFINITIONS(
48   ${OMNIORB_DEFINITIONS}
49   ${OpenCASCADE_DEFINITIONS}
50   ${BOOST_DEFINITIONS}
51 )
52
53 IF(WIN32)
54   ADD_DEFINITIONS(-DNOGDI)
55 ENDIF(WIN32)
56
57 # libraries to link to
58 SET(_link_LIBRARIES
59   ${Boost_LIBRARIES}
60   ${KERNEL_OpUtil}
61   ${KERNEL_SalomeNotification}
62   ${KERNEL_ResourcesManager}
63   ${KERNEL_SalomeResourcesManager}
64   ${KERNEL_SALOMEBasics}
65   ${KERNEL_SalomeContainer}
66   ${KERNEL_SalomeNS}
67   ${KERNEL_Registry}
68   ${KERNEL_SalomeHDFPersist}
69   ${KERNEL_SalomeLifeCycleCORBA}
70   ${KERNEL_TOOLSDS}  
71   ${KERNEL_SalomeGenericObj}
72   ${KERNEL_SalomeIDLKERNEL}
73   ${KERNEL_SALOMELocalTrace}
74   ${KERNEL_SalomeKernelHelpers}
75   ${KERNEL_SalomeDS}
76   ${KERNEL_SalomeCatalog}
77   ${OpenCASCADE_ApplicationFramework_LIBRARIES}
78   ${OpenCASCADE_ModelingAlgorithms_LIBRARIES}
79   ${GEOM_GEOMClient}
80   ${GEOM_SalomeIDLGEOM}
81   VTK::IOLegacy
82   SalomeIDLSMESH
83   SMESHimpl
84   SMDS
85   SMESHDS
86   SMESHControls
87   MeshDriverMED
88 )
89
90 # --- headers ---
91
92 # header files / no moc processing
93 SET(SMESHEngine_HEADERS
94   SMESH_Gen_i.hxx
95   SMESH_Gen_No_Session_i.hxx
96   SMESH_Gen_Session_i.hxx
97   SMESH_Algo_i.hxx
98   SMESH_0D_Algo_i.hxx
99   SMESH_1D_Algo_i.hxx
100   SMESH_2D_Algo_i.hxx
101   SMESH_3D_Algo_i.hxx
102   SMESH_subMesh_i.hxx
103   SMESH_Mesh_i.hxx
104   SMESH_Hypothesis_i.hxx
105   SMESH_PythonDump.hxx
106   SMESH_Group_i.hxx
107   SMESH_Filter_i.hxx
108   SMESH_MeshEditor_i.hxx
109   SMESH_Pattern_i.hxx
110   SMESH_2smeshpy.hxx
111   SMESH_NoteBook.hxx
112   SMESH_Measurements_i.hxx
113   SMESH_PreMeshInfo.hxx
114   SMESH_MeshPartDS.hxx
115   SMESH.hxx
116   SMESH_Component_Generator.hxx
117   MG_ADAPT_i.hxx
118 )
119
120 # --- sources ---
121
122 # sources / static
123 SET(SMESHEngine_SOURCES
124   SMESH_Gen_i.cxx
125   SMESH_Gen_i_1.cxx
126   SMESH_Gen_No_Session_i.cxx
127   SMESH_Gen_Session_i.cxx
128   SMESH_PythonDump.cxx
129   SMESH_Mesh_i.cxx
130   SMESH_subMesh_i.cxx
131   SMESH_MeshEditor_i.cxx
132   SMESH_Hypothesis_i.cxx
133   SMESH_Algo_i.cxx
134   SMESH_0D_Algo_i.cxx
135   SMESH_1D_Algo_i.cxx
136   SMESH_2D_Algo_i.cxx
137   SMESH_3D_Algo_i.cxx
138   SMESH_Filter_i.cxx
139   SMESH_Group_i.cxx
140   SMESH_Pattern_i.cxx
141   SMESH_2smeshpy.cxx
142   SMESH_NoteBook.cxx
143   SMESH_Measurements_i.cxx
144   SMESH_PreMeshInfo.cxx
145   SMESH_Component_Generator.cxx
146   MG_ADAPT_i.cxx
147 )
148
149 # --- rules ---
150
151 ADD_LIBRARY(SMESHEngine ${SMESHEngine_SOURCES})
152 TARGET_LINK_LIBRARIES(SMESHEngine ${_link_LIBRARIES} )
153 INSTALL(TARGETS SMESHEngine EXPORT ${PROJECT_NAME}TargetGroup DESTINATION ${SALOME_INSTALL_LIBS})
154
155 INSTALL(FILES ${SMESHEngine_HEADERS} DESTINATION ${SALOME_INSTALL_HEADERS})