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