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 91 92 93 94 95 96 97
|
# (C) Copyright 2011- ECMWF.
#
# 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.
# In applying this licence, ECMWF does not waive the privileges and immunities
# granted to it by virtue of its status as an intergovernmental organisation nor
# does it submit to any jurisdiction.
########################################################################################################################
cmake_minimum_required( VERSION 3.18 FATAL_ERROR )
find_package( ecbuild 3.12 REQUIRED HINTS ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_SOURCE_DIR}/../ecbuild)
project( metkit LANGUAGES CXX C )
set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
########################################################################################################################
### dependencies and options
if(NOT METKIT_CONFIGS_BRANCH)
set(METKIT_CONFIGS_BRANCH chk)
endif()
ecbuild_add_option( FEATURE BUILD_TOOLS
DEFAULT ON
DESCRIPTION "Build the command line tools" )
ecbuild_add_option( FEATURE EXPERIMENTAL
DEFAULT OFF
DESCRIPTION "Experimental features" )
# GRIB support
ecbuild_add_option( FEATURE GRIB
DEFAULT ON
DESCRIPTION "Add support for GRIB format"
REQUIRED_PACKAGES "NAME eccodes VERSION 2.27" )
# BUFR support
ecbuild_add_option( FEATURE BUFR
DEFAULT ON
DESCRIPTION "Add support for BUFR format"
REQUIRED_PACKAGES "NAME eccodes VERSION 2.27" )
# netcdf support
ecbuild_add_option( FEATURE NETCDF
DEFAULT ON
DESCRIPTION "Support for NetCDF data"
REQUIRED_PACKAGES NetCDF
)
# ODB support
ecbuild_add_option( FEATURE ODB
DEFAULT ON
DESCRIPTION "Add support for ODB data"
REQUIRED_PACKAGES "NAME odc VERSION 1.0" )
# METKIT config files support
ecbuild_add_option( FEATURE METKIT_CONFIG
DEFAULT ON
DESCRIPTION "Install metkit configuration files" )
# Temporary
ecbuild_add_option( FEATURE FAIL_ON_CCSDS
DESCRIPTION "Fail on CCSDS"
DEFAULT OFF )
# eckit
set( PERSISTENT_NAMESPACE "eckit" CACHE INTERNAL "" ) # needed for generating .b files for persistent support
ecbuild_find_package( NAME eckit VERSION 1.32 REQUIRED )
############################################################################################
# sources
include(cmake/compiler_warnings.cmake) # optionally handle compiler specific warnings
add_subdirectory( src )
add_subdirectory( share )
add_subdirectory( tests )
############################################################################################
# finalize
ecbuild_pkgconfig( NAME metkit
DESCRIPTION "ECMWF Meteorological toolkit"
LIBRARIES metkit )
ecbuild_install_project( NAME ${PROJECT_NAME} )
ecbuild_print_summary()
|