Salome HOME
Merge branch 'V9_9_BR'
[plugins/gmshplugin.git] / src / GMSHPlugin / CMakeLists.txt
1 # Copyright (C) 2012-2015  ALNEOS
2 # Copyright (C) 2016-2022  EDF R&D
3 #
4 # This library is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU Lesser General Public
6 # License as published by the Free Software Foundation; either
7 # version 2.1 of the License, or (at your option) any later version.
8 #
9 # This library is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12 # Lesser General Public License for more details.
13 #
14 # You should have received a copy of the GNU Lesser General Public
15 # License along with this library; if not, write to the Free Software
16 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
17 #
18 # See http://www.alneos.com/ or email : contact@alneos.fr
19 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
20 #
21
22 # --- options ---
23 # additional include directories
24 INCLUDE_DIRECTORIES(
25   ${KERNEL_INCLUDE_DIRS}
26   ${OpenCASCADE_INCLUDE_DIR}
27   ${GEOM_INCLUDE_DIRS}
28   ${SMESH_INCLUDE_DIRS}
29   ${MEDCOUPLING_INCLUDE_DIRS}
30   ${Boost_INCLUDE_DIRS}
31   ${OMNIORB_INCLUDE_DIR}
32   ${GMSH_INCLUDE_DIRS}
33   ${PROJECT_BINARY_DIR}/idl
34 )
35
36 # additional preprocessor / compiler flags
37 ADD_DEFINITIONS(  
38   ${OMNIORB_DEFINITIONS}
39   ${OpenCASCADE_DEFINITIONS}
40   ${BOOST_DEFINITIONS}
41 )
42
43 # libraries to link to
44 SET(_link_LIBRARIES
45   ${OpenCASCADE_FoundationClasses_LIBRARIES}
46   ${OpenCASCADE_ModelingData_LIBRARIES}
47   ${OpenCASCADE_ApplicationFramework_LIBRARIES}
48   ${OpenCASCADE_ModelingAlgorithms_LIBRARIES}
49   ${GMSH_LIBRARIES}
50   ${KERNEL_SALOMELocalTrace}
51   ${KERNEL_SALOMEBasics}
52   ${KERNEL_SalomeGenericObj}
53   ${KERNEL_SalomeNS}
54   ${KERNEL_OpUtil}
55   ${SMESH_SMDS}
56   ${SMESH_SMESHDS}
57   ${SMESH_SMESHimpl}
58   ${SMESH_SMESHEngine}
59   ${SMESH_MeshDriverGMF}
60   SalomeIDLGMSHPLUGIN
61 )
62
63 # --- headers ---
64
65 # header files
66 SET(GMSHEngine_HEADERS
67   GMSHPlugin_GMSH_2D.hxx
68   GMSHPlugin_GMSH_2D_i.hxx
69   GMSHPlugin_GMSH.hxx
70   GMSHPlugin_GMSH_i.hxx
71   GMSHPlugin_Hypothesis.hxx
72   GMSHPlugin_Hypothesis_i.hxx
73   GMSHPlugin_Hypothesis_2D.hxx
74   GMSHPlugin_Hypothesis_2D_i.hxx
75   GMSHPlugin_Mesher.hxx
76   GMSHPlugin_Defs.hxx
77 )
78
79 # --- sources ---
80
81 # sources / static
82 SET(GMSHEngine_SOURCES
83   GMSHPlugin_GMSH_2D.cxx
84   GMSHPlugin_GMSH_2D_i.cxx
85   GMSHPlugin_GMSH.cxx
86   GMSHPlugin_GMSH_i.cxx
87   GMSHPlugin_Hypothesis.cxx
88   GMSHPlugin_Hypothesis_i.cxx
89   GMSHPlugin_Hypothesis_2D.cxx
90   GMSHPlugin_Hypothesis_2D_i.cxx
91   GMSHPlugin_Mesher.cxx
92   GMSHPlugin_i.cxx
93 )
94
95 # --- scripts ---
96
97 # scripts / static
98 SET(_bin_SCRIPTS
99   __init__.py
100   GMSHPluginBuilder.py
101 )
102
103 # --- rules ---
104
105 ADD_LIBRARY(GMSHEngine ${GMSHEngine_SOURCES})
106 TARGET_LINK_LIBRARIES(GMSHEngine ${_link_LIBRARIES} )
107 INSTALL(TARGETS GMSHEngine EXPORT ${PROJECT_NAME}TargetGroup DESTINATION ${SALOME_INSTALL_LIBS})
108
109 INSTALL(FILES ${GMSHEngine_HEADERS} DESTINATION ${SALOME_INSTALL_HEADERS})
110
111 SALOME_INSTALL_SCRIPTS("${_bin_SCRIPTS}" ${SALOME_INSTALL_PYTHON}/salome/GMSHPlugin)