Salome HOME
Porting HOMARD SALOME module to the CMake build system: initial version.
[modules/homard.git] / src / HOMARD_I / CMakeLists.txt
1 # Copyright (C) 2012-2013  CEA/DEN, EDF R&D, OPEN CASCADE
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.
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
36 # libraries to link to
37 SET(_link_LIBRARIES
38   ${MEDFILE_C_LIBRARIES}
39   ${KERNEL_SalomeContainer}
40   ${KERNEL_SalomeNS}
41   ${KERNEL_Registry}
42   ${KERNEL_SalomeHDFPersist}
43   ${KERNEL_SalomeLifeCycleCORBA}
44   ${KERNEL_TOOLSDS}
45   ${KERNEL_SalomeGenericObj}
46   ${SMESH_SalomeIDLSMESH}
47   SalomeIDLHOMARD
48   HOMARDImpl
49 )
50
51 # --- headers ---
52
53 # header files / no moc processing
54 SET(HOMARDEngine_HEADERS
55   HOMARD_Cas_i.hxx
56   HOMARD_Hypothesis_i.hxx
57   HOMARD_Iteration_i.hxx
58   HOMARD_Zone_i.hxx
59   HOMARD_Gen_i.hxx
60   HOMARD_Boundary_i.hxx
61   HOMARD_YACS_i.hxx
62   HomardMedCommun.h
63 )
64
65 # --- sources ---
66
67 # sources / static
68 SET(HOMARDEngine_SOURCES
69   HOMARD_Cas_i.cxx
70   HOMARD_Hypothesis_i.cxx
71   HOMARD_Iteration_i.cxx
72   HOMARD_Gen_i.cxx
73   HOMARD_Zone_i.cxx
74   HOMARD_Boundary_i.cxx
75   HOMARD_YACS_i.cxx
76   HomardMedCommun.cxx
77 )
78
79 # --- rules ---
80
81 ADD_LIBRARY(HOMARDEngine ${HOMARDEngine_SOURCES})
82 TARGET_LINK_LIBRARIES(HOMARDEngine ${_link_LIBRARIES} )
83 INSTALL(TARGETS HOMARDEngine EXPORT ${PROJECT_NAME}TargetGroup DESTINATION ${SALOME_INSTALL_LIBS})
84
85 INSTALL(FILES ${HOMARDEngine_HEADERS} DESTINATION ${SALOME_INSTALL_HEADERS})