Salome HOME
c882e142a7a9e6fe64ea0c141e1c972179c50a2a
[plugins/netgenplugin.git] / src / NETGENPlugin / 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   ${KERNEL_INCLUDE_DIRS}
24   ${GUI_INCLUDE_DIRS}
25   ${GEOM_INCLUDE_DIRS}
26   ${OpenCASCADE_INCLUDE_DIR}
27   ${NETGEN_INCLUDE_DIRS}
28   ${SMESH_INCLUDE_DIRS}
29   ${MEDCOUPLING_INCLUDE_DIRS}
30   ${Boost_INCLUDE_DIRS}
31   ${OMNIORB_INCLUDE_DIR}
32   ${PROJECT_BINARY_DIR}/idl
33   ${NETGEN_ZLIB_INCLUDE_DIRS}
34 )
35
36 # additional preprocessor / compiler flags
37 ADD_DEFINITIONS(  
38   ${OMNIORB_DEFINITIONS}
39   ${OpenCASCADE_DEFINITIONS}
40   ${BOOST_DEFINITIONS}
41   ${NETGEN_DEFINITIONS}
42 )
43
44 # libraries to link to
45 SET(_link_LIBRARIES
46   ${NETGEN_LIBRARIES}
47   ${OpenCASCADE_FoundationClasses_LIBRARIES}
48   ${OpenCASCADE_ModelingData_LIBRARIES}
49   ${OpenCASCADE_ModelingAlgorithms_LIBRARIES}
50   ${OpenCASCADE_DataExchange_LIBRARIES}
51   ${OpenCASCADE_Visualization_LIBRARIES}
52   ${OpenCASCADE_ApplicationFramework_LIBRARIES}
53   ${GEOM_GEOMbasic}
54   ${SMESH_SMESHimpl}
55   ${SMESH_SMESHEngine}
56   ${SMESH_SMESHUtils}
57   ${SMESH_StdMeshersEngine}
58   ${SMESH_StdMeshers}
59   ${SMESH_SMESHDS}
60   ${SMESH_SMDS}
61   ${SMESH_SMESHControls}
62   ${KERNEL_SalomeGenericObj}
63   ${KERNEL_SalomeNS}
64   ${KERNEL_SALOMELocalTrace}
65   ${KERNEL_OpUtil}
66   SalomeIDLNETGENPLUGIN
67 )
68
69 # --- headers ---
70
71 # header files
72 SET(NETGENEngine_HEADERS
73   NETGENPlugin_NETGEN_3D.hxx 
74   NETGENPlugin_NETGEN_3D_i.hxx 
75   NETGENPlugin_NETGEN_2D.hxx 
76   NETGENPlugin_NETGEN_2D_i.hxx 
77   NETGENPlugin_NETGEN_2D3D.hxx 
78   NETGENPlugin_NETGEN_2D3D_i.hxx 
79   NETGENPlugin_NETGEN_2D_ONLY.hxx 
80   NETGENPlugin_NETGEN_2D_ONLY_i.hxx 
81   NETGENPlugin_Hypothesis.hxx 
82   NETGENPlugin_Hypothesis_i.hxx 
83   NETGENPlugin_Hypothesis_2D.hxx 
84   NETGENPlugin_Hypothesis_2D_i.hxx 
85   NETGENPlugin_Hypothesis_3D_i.hxx 
86   NETGENPlugin_Hypothesis_2D_ONLY_i.hxx 
87   NETGENPlugin_SimpleHypothesis_2D.hxx 
88   NETGENPlugin_SimpleHypothesis_3D.hxx 
89   NETGENPlugin_SimpleHypothesis_2D_i.hxx 
90   NETGENPlugin_SimpleHypothesis_3D_i.hxx 
91   NETGENPlugin_Mesher.hxx 
92   NETGENPlugin_Remesher_2D.hxx
93   NETGENPlugin_Defs.hxx
94 )
95
96 # --- sources ---
97
98 # sources / static
99 SET(NETGENEngine_SOURCES
100   NETGENPlugin_NETGEN_3D.cxx
101   NETGENPlugin_NETGEN_3D_i.cxx
102   NETGENPlugin_Mesher.cxx
103   NETGENPlugin_NETGEN_2D.cxx
104   NETGENPlugin_NETGEN_2D_i.cxx
105   NETGENPlugin_NETGEN_2D3D.cxx
106   NETGENPlugin_NETGEN_2D3D_i.cxx
107   NETGENPlugin_NETGEN_2D_ONLY.cxx
108   NETGENPlugin_NETGEN_2D_ONLY_i.cxx
109   NETGENPlugin_Hypothesis.cxx
110   NETGENPlugin_Hypothesis_i.cxx
111   NETGENPlugin_Hypothesis_2D.cxx
112   NETGENPlugin_Hypothesis_2D_i.cxx
113   NETGENPlugin_Hypothesis_3D_i.cxx
114   NETGENPlugin_Hypothesis_2D_ONLY_i.cxx
115   NETGENPlugin_SimpleHypothesis_2D.cxx
116   NETGENPlugin_SimpleHypothesis_3D.cxx
117   NETGENPlugin_SimpleHypothesis_2D_i.cxx
118   NETGENPlugin_SimpleHypothesis_3D_i.cxx
119   NETGENPlugin_Remesher_2D.cxx
120   NETGENPlugin_i.cxx
121 )
122
123 # --- scripts ---
124
125 # scripts / static
126 SET(_bin_SCRIPTS
127   __init__.py
128   NETGENPluginBuilder.py
129 )
130
131 # --- rules ---
132
133 ADD_LIBRARY(NETGENEngine ${NETGENEngine_SOURCES})
134 TARGET_LINK_LIBRARIES(NETGENEngine ${_link_LIBRARIES} )
135 INSTALL(TARGETS NETGENEngine EXPORT ${PROJECT_NAME}TargetGroup DESTINATION ${SALOME_INSTALL_LIBS})
136
137 INSTALL(FILES ${NETGENEngine_HEADERS} DESTINATION ${SALOME_INSTALL_HEADERS})
138
139 SALOME_INSTALL_SCRIPTS("${_bin_SCRIPTS}" ${SALOME_INSTALL_PYTHON}/salome/NETGENPlugin)