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