-
Notifications
You must be signed in to change notification settings - Fork 1
/
CMakeLists.txt
90 lines (62 loc) · 3.05 KB
/
CMakeLists.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
################################################################################
# FEMPS
################################################################################
cmake_minimum_required( VERSION 3.3.2 FATAL_ERROR )
project( femps VERSION 1.2.0 LANGUAGES Fortran )
set( CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/cmake;${CMAKE_MODULE_PATH})
set( CMAKE_DIRECTORY_LABELS "femps" )
set( ECBUILD_DEFAULT_BUILD_TYPE Release )
set( ENABLE_OS_TESTS OFF CACHE BOOL "Disable OS tests" FORCE )
set( ENABLE_LARGE_FILE_SUPPORT OFF CACHE BOOL "Disable testing of large file support" FORCE )
set( ENABLE_MPI ON CACHE BOOL "Compile with MPI" )
include( ecbuild_system NO_POLICY_SCOPE )
ecbuild_requires_macro_version( 2.5 )
################################################################################
# Project
################################################################################
ecbuild_declare_project()
ecbuild_enable_fortran( REQUIRED )
set( FEMPS_LINKER_LANGUAGE Fortran )
################################################################################
# Standard compiler flags
################################################################################
include( femps_extra_macros )
################################################################################
# Dependencies
################################################################################
# # MPI
# ecbuild_find_mpi( COMPONENTS Fortran REQUIRED )
# ecbuild_include_mpi()
# link_libraries(${MPI_Fortran_LIBRARIES})
# NetCDF
find_package( jedicmake QUIET )
find_package( NetCDF REQUIRED COMPONENTS Fortran )
################################################################################
# Export package info
################################################################################
list( APPEND FEMPS_TPLS NetCDF)
set( FEMPS_INCLUDE_DIRS ${CMAKE_CURRENT_SOURCE_DIR}
${CMAKE_CURRENT_SOURCE_DIR}/src
${CMAKE_Fortran_MODULE_DIRECTORY})
set( FEMPS_LIBRARIES femps )
get_directory_property( FEMPS_DEFINITIONS COMPILE_DEFINITIONS )
foreach( _tpl ${FEMPS_TPLS} )
string( TOUPPER ${_tpl} TPL )
list( APPEND FEMPS_EXTRA_DEFINITIONS ${${TPL}_DEFINITIONS} ${${TPL}_TPL_DEFINITIONS} )
list( APPEND FEMPS_EXTRA_INCLUDE_DIRS ${${TPL}_INCLUDE_DIRS} ${${TPL}_TPL_INCLUDE_DIRS} )
list( APPEND FEMPS_EXTRA_LIBRARIES ${${TPL}_LIBRARIES} ${${TPL}_TPL_LIBRARIES} )
endforeach()
################################################################################
# Sources
################################################################################
include_directories( ${FEMPS_INCLUDE_DIRS}
${FEMPS_EXTRA_INCLUDE_DIRS} )
add_subdirectory( src )
add_subdirectory( test )
################################################################################
# Finalise configuration
################################################################################
# prepares a tar.gz of the sources and/or binaries
ecbuild_install_project( NAME femps )
# print the summary of the configuration
ecbuild_print_summary()