Salome HOME
274c8afd61b0d71d022832aba7ef0887c21a90f8
[modules/homard.git] / src / HOMARD_I / CMakeLists.txt
1 # Copyright (C) 2012-2021  CEA/DEN, EDF R&D
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   ${KERNEL_INCLUDE_DIRS}
25   ${MEDFILE_INCLUDE_DIRS}
26   ${SMESH_INCLUDE_DIRS}
27   ${GEOM_INCLUDE_DIRS}
28   ${MEDCOUPLING_INCLUDE_DIRS}
29   ${HDF5_INCLUDE_DIRS}
30   ${PROJECT_BINARY_DIR}
31   ${PROJECT_BINARY_DIR}/idl
32   ${PROJECT_BINARY_DIR}/adm_local/unix
33   ${PROJECT_SOURCE_DIR}/src/FrontTrack
34   ${PROJECT_SOURCE_DIR}/src/HOMARD
35   ${PROJECT_SOURCE_DIR}/src/HOMARDGUI
36 )
37 # additional preprocessor / compiler flags
38 ADD_DEFINITIONS(
39   ${OMNIORB_DEFINITIONS}
40 )
41
42 # libraries to link to
43 SET(_link_LIBRARIES
44   ${MEDFILE_C_LIBRARIES}
45   ${KERNEL_SalomeContainer}
46   ${KERNEL_SalomeNS}
47   ${KERNEL_Registry}
48   ${KERNEL_SalomeHDFPersist}
49   ${KERNEL_SalomeLifeCycleCORBA}
50   ${KERNEL_TOOLSDS}
51   ${KERNEL_SalomeGenericObj}
52   ${SMESH_SalomeIDLSMESH}
53   ${SMESH_SMESHEngine}
54   FrontTrack
55   SalomeIDLHOMARD
56   HOMARDImpl
57 )
58
59 # --- headers ---
60
61 # header files / no moc processing
62 SET(HOMARDEngine_HEADERS
63   HOMARD_Cas_i.hxx
64   HOMARD_Component_Generator.hxx
65   HOMARD_Hypothesis_i.hxx
66   HOMARD_Iteration_i.hxx
67   HOMARD_Zone_i.hxx
68   HOMARD_Gen_i.hxx
69   HOMARD_Gen_i_Session.hxx
70   HOMARD_Gen_i_No_Session.hxx
71   HOMARD_Boundary_i.hxx
72   HOMARD_YACS_i.hxx
73   HomardMedCommun.h
74   HOMARD_i.hxx
75 )
76
77 # --- sources ---
78
79 # sources / static
80 SET(HOMARDEngine_SOURCES
81   HOMARD_Cas_i.cxx
82   HOMARD_Component_Generator.cxx
83   HOMARD_Hypothesis_i.cxx
84   HOMARD_Iteration_i.cxx
85   HOMARD_Gen_i.cxx
86   HOMARD_Gen_i_Session.cxx
87   HOMARD_Gen_i_No_Session.cxx
88   HOMARD_Zone_i.cxx
89   HOMARD_Boundary_i.cxx
90   HOMARD_YACS_i.cxx
91   HomardMedCommun.cxx
92 )
93
94 # --- rules ---
95
96 ADD_LIBRARY(HOMARDEngine ${HOMARDEngine_SOURCES})
97 TARGET_LINK_LIBRARIES(HOMARDEngine ${_link_LIBRARIES} )
98 INSTALL(TARGETS HOMARDEngine EXPORT ${PROJECT_NAME}TargetGroup DESTINATION ${SALOME_INSTALL_LIBS})
99
100 INSTALL(FILES ${HOMARDEngine_HEADERS} DESTINATION ${SALOME_INSTALL_HEADERS})