-
Notifications
You must be signed in to change notification settings - Fork 4
/
CMakeLists.txt
77 lines (60 loc) · 2.65 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
# (C) Copyright 2017-2022 UCAR.
#
# This software is licensed under the terms of the Apache Licence Version 2.0
# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
################################################################################
# SOCA
################################################################################
cmake_minimum_required( VERSION 3.12 )
project( soca VERSION 1.8.0 LANGUAGES C CXX Fortran)
find_package(ecbuild 3.3.2 REQUIRED)
include( ecbuild_system NO_POLICY_SCOPE )
ecbuild_declare_project()
list( APPEND CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/cmake)
include( soca_compiler_flags )
################################################################################
# Dependencies
################################################################################
find_package( NetCDF REQUIRED COMPONENTS Fortran C)
find_package( gsl-lite REQUIRED HINTS $ENV{gsl_list_DIR})
find_package( eckit 1.24.4 REQUIRED)
find_package( fckit 0.11.0 REQUIRED)
find_package( atlas 0.35.0 REQUIRED)
find_package( oops 1.10.0 REQUIRED)
find_package( vader 1.7.0 REQUIRED)
find_package( saber 1.10.0 REQUIRED)
find_package( ioda 2.9.0 REQUIRED)
find_package( ufo 1.10.0 REQUIRED)
find_package( fms 2023.3.0 REQUIRED COMPONENTS R4 R8)
add_library( fms ALIAS FMS::fms_r8)
find_package( OpenMP COMPONENTS C Fortran REQUIRED)
# Optionally look for Torch and daml
find_package(Torch QUIET)
find_package(daml QUIET)
# Optionally look for icepack
find_package( icepack 1.2.0 QUIET)
include_directories( ${NETCDF_INCLUDE_DIRS} )
################################################################################
# Model
# TODO update to allow switching between mom6solo (here) and UFS (external)
################################################################################
add_subdirectory(mom6)
################################################################################
# Sources
################################################################################
set( SOCA_LINKER_LANGUAGE CXX)
add_subdirectory( src )
add_subdirectory( test )
add_subdirectory( tutorial )
# Build Doxygen documentation
add_subdirectory( docs )
if(ECBUILD_INSTALL_FORTRAN_MODULES)
install(DIRECTORY ${CMAKE_Fortran_MODULE_DIRECTORY}/${CMAKE_CFG_INTDIR} DESTINATION ${INSTALL_INCLUDE_DIR} )
endif()
################################################################################
# Finalise configuration
################################################################################
# prepares a tar.gz of the sources and/or binaries
ecbuild_install_project( NAME soca )
# print the summary of the configuration
ecbuild_print_summary()