-
Notifications
You must be signed in to change notification settings - Fork 2
/
CMakeLists.txt
49 lines (38 loc) · 1.73 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.
################################################################################
# UMDSST
################################################################################
cmake_minimum_required( VERSION 3.12 )
project( umdsst VERSION 2021.5.0 LANGUAGES C CXX Fortran)
find_package(ecbuild 3.3.2 QUIET)
include( ecbuild_system NO_POLICY_SCOPE )
ecbuild_declare_project()
list( APPEND CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/cmake)
include( umdsst_compiler_flags )
################################################################################
# Dependencies
################################################################################
find_package( NetCDF REQUIRED COMPONENTS Fortran )
find_package( eckit 1.11.6 REQUIRED)
find_package( fckit 0.7.0 REQUIRED)
find_package( atlas 0.20.2 REQUIRED)
find_package( oops 1.0.0 REQUIRED)
find_package( saber 1.0.0 REQUIRED)
find_package( ioda 1.0.0 REQUIRED)
find_package( ufo 1.0.0 REQUIRED)
################################################################################
# Sources
################################################################################
set( UMDSST_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 umdsst )
# print the summary of the configuration
ecbuild_print_summary()