Salome HOME
Synchronize adm files
[modules/homard.git] / src / HOMARD_I / CMakeLists.txt
1 # Copyright (C) 2012-2014  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   SalomeIDLHOMARD
52   HOMARDImpl
53 )
54
55 # --- headers ---
56
57 # header files / no moc processing
58 SET(HOMARDEngine_HEADERS
59   HOMARD_Cas_i.hxx
60   HOMARD_Hypothesis_i.hxx
61   HOMARD_Iteration_i.hxx
62   HOMARD_Zone_i.hxx
63   HOMARD_Gen_i.hxx
64   HOMARD_Boundary_i.hxx
65   HOMARD_YACS_i.hxx
66   HomardMedCommun.h
67   HOMARD_i.hxx 
68 )
69
70 # --- sources ---
71
72 # sources / static
73 SET(HOMARDEngine_SOURCES
74   HOMARD_Cas_i.cxx
75   HOMARD_Hypothesis_i.cxx
76   HOMARD_Iteration_i.cxx
77   HOMARD_Gen_i.cxx
78   HOMARD_Zone_i.cxx
79   HOMARD_Boundary_i.cxx
80   HOMARD_YACS_i.cxx
81   HomardMedCommun.cxx
82 )
83
84 # --- rules ---
85
86 ADD_LIBRARY(HOMARDEngine ${HOMARDEngine_SOURCES})
87 TARGET_LINK_LIBRARIES(HOMARDEngine ${_link_LIBRARIES} )
88 INSTALL(TARGETS HOMARDEngine EXPORT ${PROJECT_NAME}TargetGroup DESTINATION ${SALOME_INSTALL_LIBS})
89
90 INSTALL(FILES ${HOMARDEngine_HEADERS} DESTINATION ${SALOME_INSTALL_HEADERS})