Salome HOME
Merge V9_dev branch into master
[plugins/gmshplugin.git] / src / GMSHPlugin / CMakeLists.txt
1 # Copyright (C) 2012-2015  ALNEOS
2 # Copyright (C) 2016  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.salome-platform.org/ or email : webmaster.salome@opencascade.com
19 #
20
21 # --- options ---
22 # additional include directories
23 INCLUDE_DIRECTORIES(
24   ${KERNEL_INCLUDE_DIRS}
25   ${OpenCASCADE_INCLUDE_DIR}
26   ${GEOM_INCLUDE_DIRS}
27   ${SMESH_INCLUDE_DIRS}
28   ${VTK_INCLUDE_DIRS}
29   ${Boost_INCLUDE_DIRS}
30   ${OMNIORB_INCLUDE_DIR}
31   ${GMSH_INCLUDE_DIRS}
32   ${PROJECT_BINARY_DIR}/idl
33 )
34
35 # additional preprocessor / compiler flags
36 ADD_DEFINITIONS(  
37   ${OMNIORB_DEFINITIONS}
38   ${OpenCASCADE_DEFINITIONS}
39   ${BOOST_DEFINITIONS}
40 )
41
42 # libraries to link to
43 SET(_link_LIBRARIES
44   ${OpenCASCADE_FoundationClasses_LIBRARIES}
45   ${OpenCASCADE_ModelingData_LIBRARIES}
46   ${OpenCASCADE_ApplicationFramework_LIBRARIES}
47   ${OpenCASCADE_ModelingAlgorithms_LIBRARIES}
48   ${GMSH_LIBRARIES}
49   ${KERNEL_SALOMELocalTrace}
50   ${KERNEL_SALOMEBasics}
51   ${KERNEL_SalomeGenericObj}
52   ${KERNEL_SalomeNS}
53   ${KERNEL_OpUtil}
54   ${SMESH_SMDS}
55   ${SMESH_SMESHDS}
56   ${SMESH_SMESHimpl}
57   ${SMESH_SMESHEngine}
58   ${SMESH_MeshDriverGMF}
59   SalomeIDLGMSHPLUGIN
60 )
61
62 # --- headers ---
63
64 # header files
65 SET(GMSHEngine_HEADERS
66   GMSHPlugin_GMSH_2D.hxx
67   GMSHPlugin_GMSH_2D_i.hxx
68   GMSHPlugin_GMSH.hxx
69   GMSHPlugin_GMSH_i.hxx
70   GMSHPlugin_Hypothesis.hxx
71   GMSHPlugin_Hypothesis_i.hxx
72   GMSHPlugin_Hypothesis_2D.hxx
73   GMSHPlugin_Hypothesis_2D_i.hxx
74   GMSHPlugin_Mesher.hxx
75   GMSHPlugin_Defs.hxx
76 )
77
78 # --- sources ---
79
80 # sources / static
81 SET(GMSHEngine_SOURCES
82   GMSHPlugin_GMSH_2D.cxx
83   GMSHPlugin_GMSH_2D_i.cxx
84   GMSHPlugin_GMSH.cxx
85   GMSHPlugin_GMSH_i.cxx
86   GMSHPlugin_Hypothesis.cxx
87   GMSHPlugin_Hypothesis_i.cxx
88   GMSHPlugin_Hypothesis_2D.cxx
89   GMSHPlugin_Hypothesis_2D_i.cxx
90   GMSHPlugin_Mesher.cxx
91   GMSHPlugin_i.cxx
92 )
93
94 # --- scripts ---
95
96 # scripts / static
97 SET(_bin_SCRIPTS
98   __init__.py
99   GMSHPluginBuilder.py
100 )
101
102 # --- rules ---
103
104 ADD_LIBRARY(GMSHEngine ${GMSHEngine_SOURCES})
105 TARGET_LINK_LIBRARIES(GMSHEngine ${_link_LIBRARIES} )
106 INSTALL(TARGETS GMSHEngine EXPORT ${PROJECT_NAME}TargetGroup DESTINATION ${SALOME_INSTALL_LIBS})
107
108 INSTALL(FILES ${GMSHEngine_HEADERS} DESTINATION ${SALOME_INSTALL_HEADERS})
109
110 SALOME_INSTALL_SCRIPTS("${_bin_SCRIPTS}" ${SALOME_INSTALL_PYTHON}/salome/GMSHPlugin)