Salome HOME
7062a57f03a2eaf185fa275976b6c5db1567cf2c
[modules/homard.git] / src / tool / CMakeLists.txt
1 # Copyright (C) 2016-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 cmake_minimum_required (VERSION 2.8)
20 PROJECT (Homard C Fortran)
21
22 SET(${PROJECT_NAME_UC}_VERSION_MAJOR 11)
23 SET(${PROJECT_NAME_UC}_VERSION_MINOR 99)
24 SET(${PROJECT_NAME_UC}_VERSION_PATCH 0)
25 SET(${PROJECT_NAME_UC}_VERSION ${${PROJECT_NAME_UC}_VERSION_MAJOR}.${${PROJECT_NAME_UC}_VERSION_MINOR}.${${PROJECT_NAME_UC}_VERSION_PATCH})
26
27 INCLUDE(FortranCInterface)
28 FortranCInterface_HEADER(${CMAKE_BINARY_DIR}/FC.h)
29
30 # libraries to build
31 SET(DIRLIBS
32   HOMARD_00
33   Suivi_Frontiere
34   Information
35   Modification
36   AV_Conversion
37   Decision
38   Creation_Maillage
39   AP_Conversion
40   ES_Xfig
41   ES_HOMARD
42   ES_MED
43   Utilitaire
44   Gestion_MTU
45   Dependance_Machine
46  )
47
48 FOREACH(dir Includes_Generaux ${DIRLIBS})
49         ADD_SUBDIRECTORY(${dir})
50 ENDFOREACH()
51
52 # libraries to link with
53 SET(_link_LIBRARIES
54   ${MEDFILE_F_LIBRARIES}
55   ${HDF5_LIBRARIES}
56 )
57
58 # Main binary
59 SET ( CMAKE_Fortran_FLAGS "-ffixed-line-length-0 -fdefault-double-8 -fdefault-real-8 -fdefault-integer-8 -fimplicit-none -O2" )
60
61 ADD_EXECUTABLE(homard.out homard.f)
62
63 TARGET_LINK_LIBRARIES(homard.out ${DIRLIBS} ${_link_LIBRARIES})
64
65 INSTALL(TARGETS homard.out EXPORT ${PROJECT_NAME}TargetGroup DESTINATION ${SALOME_INSTALL_BINS})
66