-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCMakeLists.txt
49 lines (38 loc) · 1.8 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
# (C) Copyright 2019-2019 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.
################################################################################
# genericMarine (JEDI based generic DA using file I/O)
################################################################################
cmake_minimum_required( VERSION 3.12 )
project( genericMarine VERSION 2023.4.0 LANGUAGES C CXX Fortran)
find_package( ecbuild 3.6 REQUIRED)
include( ecbuild_system NO_POLICY_SCOPE )
ecbuild_declare_project()
list( APPEND CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/cmake)
include( genericMarine_compiler_flags )
################################################################################
# Dependencies
################################################################################
find_package( NetCDF REQUIRED COMPONENTS C CXX)
find_package( eckit 1.23.0 REQUIRED)
find_package( fckit 0.10.1 REQUIRED)
find_package( atlas 0.35.0 REQUIRED)
find_package( oops 1.9.0 REQUIRED)
find_package( saber 1.9.0 REQUIRED)
find_package( ioda 2.8.0 REQUIRED)
find_package( ufo 1.9.0 REQUIRED)
################################################################################
# Sources
################################################################################
set( GENERICMARINE_LINKER_LANGUAGE CXX )
add_subdirectory( src )
add_subdirectory( test )
################################################################################
# Finalise configuration
################################################################################
# prepares a tar.gz of the sources and/or binaries
ecbuild_install_project( NAME genericMarine )
# print the summary of the configuration
ecbuild_print_summary()