Salome HOME
0177a58c7971564ef13e4a898d94e05c271894b5
[plugins/netgenplugin.git] / src / NETGENPlugin / CMakeLists.txt
1 # Copyright (C) 2012-2022  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   NETGENPlugin_Provider.hxx
95 )
96
97 # --- sources ---
98
99 # sources / static
100 SET(NETGENEngine_SOURCES
101   NETGENPlugin_NETGEN_3D.cxx
102   NETGENPlugin_NETGEN_3D_i.cxx
103   NETGENPlugin_Mesher.cxx
104   NETGENPlugin_NETGEN_2D.cxx
105   NETGENPlugin_NETGEN_2D_i.cxx
106   NETGENPlugin_NETGEN_2D3D.cxx
107   NETGENPlugin_NETGEN_2D3D_i.cxx
108   NETGENPlugin_NETGEN_2D_ONLY.cxx
109   NETGENPlugin_NETGEN_2D_ONLY_i.cxx
110   NETGENPlugin_Hypothesis.cxx
111   NETGENPlugin_Hypothesis_i.cxx
112   NETGENPlugin_Hypothesis_2D.cxx
113   NETGENPlugin_Hypothesis_2D_i.cxx
114   NETGENPlugin_Hypothesis_3D_i.cxx
115   NETGENPlugin_Hypothesis_2D_ONLY_i.cxx
116   NETGENPlugin_SimpleHypothesis_2D.cxx
117   NETGENPlugin_SimpleHypothesis_3D.cxx
118   NETGENPlugin_SimpleHypothesis_2D_i.cxx
119   NETGENPlugin_SimpleHypothesis_3D_i.cxx
120   NETGENPlugin_Remesher_2D.cxx
121   NETGENPlugin_i.cxx
122 )
123
124 # --- scripts ---
125
126 # scripts / static
127 SET(_bin_SCRIPTS
128   __init__.py
129   NETGENPluginBuilder.py
130 )
131
132 # --- rules ---
133
134 ADD_LIBRARY(NETGENEngine ${NETGENEngine_SOURCES})
135 TARGET_LINK_LIBRARIES(NETGENEngine ${_link_LIBRARIES} )
136 INSTALL(TARGETS NETGENEngine EXPORT ${PROJECT_NAME}TargetGroup DESTINATION ${SALOME_INSTALL_LIBS})
137
138 INSTALL(FILES ${NETGENEngine_HEADERS} DESTINATION ${SALOME_INSTALL_HEADERS})
139
140 SALOME_INSTALL_SCRIPTS("${_bin_SCRIPTS}" ${SALOME_INSTALL_PYTHON}/salome/NETGENPlugin)