2016-04-13 15:12:21 +00:00
|
|
|
#
|
|
|
|
# Copyright 2005-2016 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.
|
|
|
|
#
|
|
|
|
###############################################################################
|
2013-03-25 12:04:10 +00:00
|
|
|
# cmake options:
|
|
|
|
#
|
|
|
|
# -DCMAKE_BUILD_TYPE=Debug|RelWithDebInfo|Release|Production
|
|
|
|
# -DCMAKE_INSTALL_PREFIX=/path/to/install
|
|
|
|
#
|
|
|
|
# -DCMAKE_MODULE_PATH=/path/to/ecbuild/cmake
|
2013-04-03 10:45:13 +00:00
|
|
|
|
2016-03-16 13:33:44 +00:00
|
|
|
cmake_minimum_required( VERSION 2.8.11 FATAL_ERROR )
|
2013-03-25 12:04:10 +00:00
|
|
|
|
2015-02-18 10:14:22 +00:00
|
|
|
project( eccodes C )
|
2013-03-25 12:04:10 +00:00
|
|
|
|
2013-12-11 10:12:34 +00:00
|
|
|
set( CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake" ${CMAKE_MODULE_PATH} "${CMAKE_CURRENT_SOURCE_DIR}/../ecbuild/cmake")
|
2013-03-25 12:04:10 +00:00
|
|
|
|
2015-08-17 12:00:43 +00:00
|
|
|
include( ecbuild_system NO_POLICY_SCOPE )
|
2013-03-25 12:04:10 +00:00
|
|
|
|
2015-09-18 10:07:02 +00:00
|
|
|
ecbuild_requires_macro_version( 1.9 )
|
2014-01-03 11:20:14 +00:00
|
|
|
|
2013-03-25 12:04:10 +00:00
|
|
|
###############################################################################
|
|
|
|
# local project
|
|
|
|
|
|
|
|
ecbuild_declare_project()
|
|
|
|
|
|
|
|
###############################################################################
|
|
|
|
# some variables/options of this project
|
|
|
|
|
2015-06-09 13:50:51 +00:00
|
|
|
ecbuild_add_option( FEATURE EXAMPLES
|
|
|
|
DESCRIPTION "Build the examples"
|
|
|
|
DEFAULT ON
|
|
|
|
)
|
|
|
|
|
2014-10-20 16:40:17 +00:00
|
|
|
ecbuild_add_option( FEATURE JPG
|
2015-01-09 15:18:52 +00:00
|
|
|
DESCRIPTION "support for JPG decoding/encoding"
|
|
|
|
DEFAULT ON
|
2014-10-20 16:40:17 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
ecbuild_add_option( FEATURE PNG
|
2015-01-09 15:18:52 +00:00
|
|
|
DESCRIPTION "support for PNG decoding/encoding"
|
|
|
|
DEFAULT OFF
|
|
|
|
REQUIRED_PACKAGES PNG
|
2014-10-20 16:40:17 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
if( HAVE_PNG )
|
2015-01-09 15:18:52 +00:00
|
|
|
set( HAVE_LIBPNG 1 ) # compatibility with autotools
|
|
|
|
add_definitions( ${PNG_DEFINITIONS} )
|
2014-10-20 16:40:17 +00:00
|
|
|
else()
|
2015-01-09 15:18:52 +00:00
|
|
|
set( HAVE_LIBPNG 0 )
|
2014-10-20 16:40:17 +00:00
|
|
|
endif()
|
|
|
|
|
|
|
|
ecbuild_add_option( FEATURE NETCDF
|
2015-01-09 15:18:52 +00:00
|
|
|
DESCRIPTION "support for GRIB to NetCDF conversion"
|
|
|
|
DEFAULT ON
|
|
|
|
REQUIRED_PACKAGES NetCDF
|
2014-10-20 16:40:17 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
ecbuild_add_option( FEATURE AEC
|
2015-01-09 15:18:52 +00:00
|
|
|
DESCRIPTION "support for Adaptive Entropy Coding"
|
|
|
|
DEFAULT OFF
|
|
|
|
REQUIRED_PACKAGES AEC
|
2014-10-20 16:40:17 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
ecbuild_add_option( FEATURE PYTHON
|
2015-02-18 10:14:22 +00:00
|
|
|
DESCRIPTION "build the ecCodes Python interface"
|
2015-01-09 15:18:52 +00:00
|
|
|
DEFAULT ON
|
2016-06-01 15:40:20 +00:00
|
|
|
REQUIRED_PACKAGES "Python VERSION 2.6" NumPy
|
2014-10-20 16:40:17 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
ecbuild_add_option( FEATURE FORTRAN
|
2015-02-18 10:14:22 +00:00
|
|
|
DESCRIPTION "build the ecCodes Fortran interface"
|
2015-01-09 15:18:52 +00:00
|
|
|
DEFAULT ON
|
2015-06-09 13:50:51 +00:00
|
|
|
# REQUIRED_LANGUAGES Fortran # TODO
|
2014-10-20 16:40:17 +00:00
|
|
|
)
|
|
|
|
|
2015-06-09 13:50:51 +00:00
|
|
|
# TODO Remove this after REQUIRED_LANGUAGES
|
2014-03-31 12:57:06 +00:00
|
|
|
if( ENABLE_FORTRAN )
|
2014-10-03 15:49:05 +00:00
|
|
|
# will set EC_HAVE_FORTRAN with the result
|
|
|
|
ecbuild_enable_fortran( MODULE_DIRECTORY ${PROJECT_BINARY_DIR}/fortran/modules )
|
2015-01-09 15:18:52 +00:00
|
|
|
set( HAVE_FORTRAN ${EC_HAVE_FORTRAN} )
|
2015-06-09 13:50:51 +00:00
|
|
|
else()
|
|
|
|
set( HAVE_FORTRAN 0 )
|
2014-03-31 12:57:06 +00:00
|
|
|
endif()
|
|
|
|
|
2016-06-14 14:27:49 +00:00
|
|
|
# memfs
|
|
|
|
|
|
|
|
ecbuild_add_option( FEATURE MEMFS
|
2016-06-20 17:00:09 +00:00
|
|
|
DESCRIPTION "Memory based access to definitions/samples"
|
2016-06-14 14:27:49 +00:00
|
|
|
DEFAULT OFF
|
|
|
|
CONDITION EC_HAVE_FMEMOPEN OR EC_HAVE_FUNOPEN
|
|
|
|
REQUIRED_PACKAGES "Python VERSION 2.6"
|
|
|
|
)
|
2016-07-04 11:48:40 +00:00
|
|
|
|
|
|
|
if( HAVE_MEMFS AND "${CMAKE_C_COMPILER_ID}" STREQUAL "Cray")
|
|
|
|
set( HAVE_MEMFS OFF )
|
|
|
|
ecbuild_warn("MEMFS not supported with Cray C compiler")
|
|
|
|
endif()
|
|
|
|
|
2014-10-20 16:40:17 +00:00
|
|
|
# advanced options (not visible in cmake-gui )
|
|
|
|
|
2015-12-30 14:39:02 +00:00
|
|
|
ecbuild_add_option( FEATURE MEMORY_MANAGEMENT DESCRIPTION "enable memory management" DEFAULT OFF ADVANCED )
|
|
|
|
ecbuild_add_option( FEATURE ALIGN_MEMORY DESCRIPTION "enable memory alignment" DEFAULT OFF ADVANCED )
|
|
|
|
ecbuild_add_option( FEATURE GRIB_TIMER DESCRIPTION "enable timer" DEFAULT OFF ADVANCED )
|
|
|
|
ecbuild_add_option( FEATURE ECCODES_THREADS DESCRIPTION "enable POSIX threads" DEFAULT OFF ADVANCED )
|
|
|
|
ecbuild_add_option( FEATURE ECCODES_OMP_THREADS DESCRIPTION "enable OMP threads" DEFAULT OFF ADVANCED )
|
2016-05-05 15:23:46 +00:00
|
|
|
ecbuild_add_option( FEATURE EXTRA_TESTS DESCRIPTION "enable extended regression testing" DEFAULT OFF ADVANCED )
|
2013-03-25 12:04:10 +00:00
|
|
|
|
|
|
|
###############################################################################
|
|
|
|
# macro processing
|
|
|
|
|
2015-02-18 10:14:22 +00:00
|
|
|
set( ECCODES_EXTRA_LIBRARIES "" )
|
|
|
|
set( ECCODES_EXTRA_INCLUDE_DIRS "" )
|
|
|
|
set( ECCODES_EXTRA_DEFINITIONS "" )
|
2013-03-25 12:04:10 +00:00
|
|
|
|
2013-04-10 15:46:41 +00:00
|
|
|
find_package( CMath )
|
2015-09-18 10:07:02 +00:00
|
|
|
list( APPEND ECCODES_TPLS CMath )
|
2013-03-25 12:04:10 +00:00
|
|
|
|
2013-04-03 10:45:13 +00:00
|
|
|
### JPG support
|
2013-03-25 12:04:10 +00:00
|
|
|
|
2013-04-03 10:45:13 +00:00
|
|
|
set( HAVE_JPEG 0 )
|
|
|
|
set( HAVE_LIBJASPER 0 )
|
|
|
|
set( HAVE_LIBOPENJPEG 0 )
|
2013-03-25 12:04:10 +00:00
|
|
|
|
2013-12-09 14:47:14 +00:00
|
|
|
if( ENABLE_JPG )
|
2013-04-03 10:45:13 +00:00
|
|
|
|
2015-12-17 11:11:42 +00:00
|
|
|
# Note: This is a deprecated feature but we need it to find Jasper at ECMWF.
|
|
|
|
# ecbuild_add_extra_search_paths modifies CMAKE_PREFIX_PATH
|
|
|
|
# which can affect future package discovery if not undone by the caller.
|
|
|
|
# The current CMAKE_PREFIX_PATH is backed up as _CMAKE_PREFIX_PATH
|
|
|
|
#
|
|
|
|
set(ECBUILD_NO_DEPRECATIONS ON) # Suppress deprecation message
|
|
|
|
ecbuild_add_extra_search_paths( jasper )
|
2013-04-03 10:45:13 +00:00
|
|
|
find_package( Jasper )
|
2015-12-17 11:11:42 +00:00
|
|
|
set(CMAKE_PREFIX_PATH ${_CMAKE_PREFIX_PATH}) # Restore CMAKE_PREFIX_PATH
|
|
|
|
set(ECBUILD_NO_DEPRECATIONS OFF) # Remove suppression
|
2013-09-18 07:53:52 +00:00
|
|
|
|
2013-04-03 10:45:13 +00:00
|
|
|
find_package( OpenJPEG )
|
|
|
|
|
|
|
|
if( JASPER_FOUND )
|
2015-09-18 10:07:02 +00:00
|
|
|
list( APPEND ECCODES_TPLS Jasper )
|
2013-04-23 08:59:14 +00:00
|
|
|
set( HAVE_JPEG 1 )
|
|
|
|
set( HAVE_LIBJASPER 1 )
|
2013-04-03 10:45:13 +00:00
|
|
|
endif()
|
|
|
|
|
2015-07-24 08:53:28 +00:00
|
|
|
if( OPENJPEG_FOUND )
|
2015-09-18 10:07:02 +00:00
|
|
|
list( APPEND ECCODES_TPLS OpenJPEG )
|
2013-04-23 08:59:14 +00:00
|
|
|
set( HAVE_JPEG 1 )
|
2013-04-03 10:45:13 +00:00
|
|
|
set( HAVE_LIBOPENJPEG 1 )
|
|
|
|
endif()
|
|
|
|
|
|
|
|
endif()
|
|
|
|
|
|
|
|
|
2013-05-14 16:38:40 +00:00
|
|
|
###############################################################################
|
2013-04-10 15:46:41 +00:00
|
|
|
# other options
|
|
|
|
|
|
|
|
if( GRIB_TIMER )
|
|
|
|
set( GRIB_TIMER 1 )
|
|
|
|
else()
|
|
|
|
set( GRIB_TIMER 0 )
|
|
|
|
endif()
|
|
|
|
|
|
|
|
set( IS_BIG_ENDIAN 0 )
|
|
|
|
if( EC_BIG_ENDIAN )
|
|
|
|
set( IS_BIG_ENDIAN 1 )
|
|
|
|
endif()
|
|
|
|
|
|
|
|
set( MANAGE_MEM 0 )
|
2013-12-09 14:47:14 +00:00
|
|
|
if( ENABLE_MEMORY_MANAGEMENT )
|
2013-04-10 15:46:41 +00:00
|
|
|
set( MANAGE_MEM 1 )
|
|
|
|
endif()
|
|
|
|
|
2013-12-23 15:50:47 +00:00
|
|
|
set( CMAKE_THREAD_PREFER_PTHREAD 1 ) # find thread library, but prefer pthreads
|
|
|
|
find_package(Threads REQUIRED)
|
|
|
|
|
2015-01-29 15:50:51 +00:00
|
|
|
# debug
|
2016-04-14 10:10:15 +00:00
|
|
|
ecbuild_info(" CMAKE_THREAD_LIBS_INIT=${CMAKE_THREAD_LIBS_INIT}")
|
|
|
|
ecbuild_info(" CMAKE_USE_PTHREADS_INIT=${CMAKE_USE_PTHREADS_INIT}")
|
|
|
|
ecbuild_info(" HAVE_ECCODES_THREADS=${HAVE_ECCODES_THREADS}")
|
2015-01-29 15:50:51 +00:00
|
|
|
|
2016-04-07 15:51:07 +00:00
|
|
|
|
2013-04-10 15:46:41 +00:00
|
|
|
set( GRIB_PTHREADS 0 )
|
2015-12-30 14:39:02 +00:00
|
|
|
set( GRIB_OMP_THREADS 0 )
|
2013-04-10 15:46:41 +00:00
|
|
|
set( GRIB_LINUX_PTHREADS 0 )
|
2015-05-14 15:45:03 +00:00
|
|
|
#if( HAVE_ECCODES_THREADS AND CMAKE_THREAD_LIBS_INIT )
|
|
|
|
if( HAVE_ECCODES_THREADS )
|
2016-01-07 11:31:42 +00:00
|
|
|
if( NOT ${CMAKE_USE_PTHREADS_INIT} )
|
2016-04-14 10:10:15 +00:00
|
|
|
ecbuild_critical("Pthreads is not supported on your system: thread library found=[${CMAKE_THREAD_LIBS_INIT}]")
|
2016-01-07 11:31:42 +00:00
|
|
|
endif()
|
|
|
|
set( GRIB_PTHREADS 1 )
|
|
|
|
if( ${CMAKE_SYSTEM_NAME} MATCHES "Linux" )
|
|
|
|
set( GRIB_LINUX_PTHREADS 1 )
|
2013-04-10 15:46:41 +00:00
|
|
|
endif()
|
2015-12-30 14:39:02 +00:00
|
|
|
elseif(HAVE_ECCODES_OMP_THREADS)
|
|
|
|
ecbuild_enable_omp()
|
|
|
|
set( GRIB_OMP_THREADS 1 )
|
2013-04-10 15:46:41 +00:00
|
|
|
endif()
|
2016-01-07 11:31:42 +00:00
|
|
|
|
|
|
|
# Cannot have both options
|
|
|
|
if( HAVE_ECCODES_THREADS AND HAVE_ECCODES_OMP_THREADS )
|
2016-04-14 10:10:15 +00:00
|
|
|
ecbuild_critical("Cannot enable both POSIX threads and OMP! Please specify just one option")
|
2016-01-07 11:31:42 +00:00
|
|
|
endif()
|
|
|
|
|
2016-04-14 10:10:15 +00:00
|
|
|
ecbuild_info(" GRIB_PTHREADS=${GRIB_PTHREADS}")
|
|
|
|
ecbuild_info(" GRIB_OMP_THREADS=${GRIB_OMP_THREADS}")
|
2013-04-10 15:46:41 +00:00
|
|
|
|
|
|
|
set( GRIB_MEM_ALIGN 0 )
|
2013-12-09 14:47:14 +00:00
|
|
|
if( ENABLE_ALIGN_MEMORY )
|
2013-04-10 15:46:41 +00:00
|
|
|
set( GRIB_MEM_ALIGN 1 )
|
|
|
|
endif()
|
|
|
|
|
2013-06-19 15:54:11 +00:00
|
|
|
# fix for #if IEEE_LE or IEE_BE instead of #ifdef
|
|
|
|
|
|
|
|
if( IEEE_BE )
|
|
|
|
set( IEEE_LE 0 )
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if( IEEE_LE )
|
|
|
|
set( IEEE_BE 0 )
|
|
|
|
endif()
|
|
|
|
|
2013-04-03 10:45:13 +00:00
|
|
|
###############################################################################
|
|
|
|
# contents
|
2013-03-25 12:04:10 +00:00
|
|
|
|
2014-11-25 13:21:39 +00:00
|
|
|
if( NOT ${DEVELOPER_MODE} )
|
2015-08-28 13:00:17 +00:00
|
|
|
set( the_default_data_prefix ${CMAKE_INSTALL_PREFIX} )
|
2014-11-25 13:21:39 +00:00
|
|
|
else()
|
2015-08-28 13:00:17 +00:00
|
|
|
set( the_default_data_prefix ${CMAKE_BINARY_DIR} )
|
2014-11-25 13:21:39 +00:00
|
|
|
endif()
|
|
|
|
|
2015-09-22 10:42:54 +00:00
|
|
|
if( NOT DEFINED ECCODES_DEFINITION_SUFF )
|
|
|
|
set( ECCODES_DEFINITION_SUFF share/eccodes/definitions )
|
2013-03-25 12:04:10 +00:00
|
|
|
endif()
|
2015-09-22 10:42:54 +00:00
|
|
|
if( NOT DEFINED ECCODES_SAMPLES_SUFF )
|
|
|
|
set( ECCODES_SAMPLES_SUFF share/eccodes/samples )
|
2013-03-25 12:04:10 +00:00
|
|
|
endif()
|
2015-09-22 10:42:54 +00:00
|
|
|
if( NOT DEFINED ECCODES_IFS_SAMPLES_SUFF )
|
2016-04-27 14:43:49 +00:00
|
|
|
set( ECCODES_IFS_SAMPLES_SUFF share/eccodes/ifs_samples )
|
2015-01-19 10:23:02 +00:00
|
|
|
endif()
|
2013-03-25 12:04:10 +00:00
|
|
|
|
2015-09-22 10:42:54 +00:00
|
|
|
set( ECCODES_DEFINITION_PATH ${the_default_data_prefix}/${ECCODES_DEFINITION_SUFF} )
|
|
|
|
set( ECCODES_SAMPLES_PATH ${the_default_data_prefix}/${ECCODES_SAMPLES_SUFF} )
|
|
|
|
set( ECCODES_IFS_SAMPLES_PATH ${the_default_data_prefix}/${ECCODES_IFS_SAMPLES_SUFF} )
|
|
|
|
|
2013-04-03 10:45:13 +00:00
|
|
|
### config header
|
|
|
|
|
2014-01-03 11:20:14 +00:00
|
|
|
ecbuild_generate_config_headers()
|
|
|
|
|
2015-02-18 18:11:38 +00:00
|
|
|
configure_file( eccodes_config.h.in eccodes_config.h )
|
2013-04-03 10:45:13 +00:00
|
|
|
|
2015-02-18 18:11:38 +00:00
|
|
|
add_definitions( -DHAVE_ECCODES_CONFIG_H )
|
2013-04-10 15:46:41 +00:00
|
|
|
|
2015-02-18 18:11:38 +00:00
|
|
|
install( FILES ${CMAKE_CURRENT_BINARY_DIR}/eccodes_config.h DESTINATION ${INSTALL_INCLUDE_DIR} )
|
2013-04-10 15:46:41 +00:00
|
|
|
|
|
|
|
if( CMAKE_COMPILER_IS_GNUCC )
|
2015-09-18 09:39:20 +00:00
|
|
|
ecbuild_add_c_flags("-pedantic")
|
2013-04-10 15:46:41 +00:00
|
|
|
endif()
|
2013-04-03 10:45:13 +00:00
|
|
|
|
2016-04-13 15:12:21 +00:00
|
|
|
###############################################################################
|
2013-05-14 16:38:40 +00:00
|
|
|
# contents
|
|
|
|
|
2014-03-31 12:57:06 +00:00
|
|
|
### export package to other ecbuild packages
|
2013-05-14 16:38:40 +00:00
|
|
|
|
2015-02-18 10:14:22 +00:00
|
|
|
set( ECCODES_INCLUDE_DIRS ${CMAKE_CURRENT_BINARY_DIR} ${CMAKE_CURRENT_SOURCE_DIR}/src ${CMAKE_CURRENT_BINARY_DIR}/src )
|
|
|
|
set( ECCODES_LIBRARIES eccodes )
|
2013-05-14 16:38:40 +00:00
|
|
|
|
2015-01-26 22:28:46 +00:00
|
|
|
get_directory_property( COMPILE_DEFINITIONS ECCODES_DEFINITIONS )
|
2013-05-14 16:38:40 +00:00
|
|
|
|
2015-02-18 10:14:22 +00:00
|
|
|
foreach( _tpl ${ECCODES_TPLS} )
|
2014-06-18 16:14:01 +00:00
|
|
|
string( TOUPPER ${_tpl} TPL )
|
|
|
|
if( ${TPL}_FOUND )
|
2015-02-18 10:14:22 +00:00
|
|
|
list( APPEND ECCODES_EXTRA_DEFINITIONS ${${TPL}_DEFINITIONS} )
|
|
|
|
list( APPEND ECCODES_EXTRA_INCLUDE_DIRS ${${TPL}_INCLUDE_DIRS} ${${TPL}_INCLUDE_DIR} )
|
|
|
|
list( APPEND ECCODES_EXTRA_LIBRARIES ${${TPL}_LIBRARIES} )
|
2014-06-18 16:14:01 +00:00
|
|
|
endif()
|
2013-05-14 16:38:40 +00:00
|
|
|
endforeach()
|
|
|
|
|
2013-04-03 10:45:13 +00:00
|
|
|
### include directories
|
|
|
|
|
2015-02-18 10:14:22 +00:00
|
|
|
include_directories( ${ECCODES_INCLUDE_DIRS} ${ECCODES_EXTRA_INCLUDE_DIRS} )
|
2013-04-03 10:45:13 +00:00
|
|
|
|
2016-06-14 14:27:49 +00:00
|
|
|
add_subdirectory( definitions ) # must be before memfs
|
|
|
|
add_subdirectory( memfs )
|
2013-03-25 12:04:10 +00:00
|
|
|
add_subdirectory( src )
|
|
|
|
add_subdirectory( tools )
|
|
|
|
add_subdirectory( fortran )
|
|
|
|
add_subdirectory( python )
|
|
|
|
add_subdirectory( tests )
|
|
|
|
add_subdirectory( tigge )
|
|
|
|
add_subdirectory( examples )
|
2014-03-31 12:57:06 +00:00
|
|
|
add_subdirectory( data )
|
2013-04-02 14:17:46 +00:00
|
|
|
add_subdirectory( samples )
|
|
|
|
add_subdirectory( ifs_samples ) # must come after samples
|
2013-03-25 12:04:10 +00:00
|
|
|
|
|
|
|
# ecbuild_dont_pack( DIRS samples DONT_PACK_REGEX "*.grib" )
|
2014-07-11 15:31:24 +00:00
|
|
|
ecbuild_dont_pack( DIRS
|
2015-11-18 15:50:27 +00:00
|
|
|
concepts tests.ecmwf doxygen confluence examples.dev templates parameters java
|
2015-07-14 17:05:15 +00:00
|
|
|
gaussian_experimental gribex examples/F77
|
2016-06-16 09:42:37 +00:00
|
|
|
examples/extra bamboo fortran/fortranCtypes tigge/tools share/eccodes
|
2015-04-01 08:50:46 +00:00
|
|
|
src/.deps tests/.deps tools/.deps tigge/.deps examples/C/.deps examples/python/.deps
|
|
|
|
python/.deps fortran/.deps
|
2014-07-11 15:31:24 +00:00
|
|
|
)
|
2014-11-04 14:49:23 +00:00
|
|
|
#ecbuild_dont_pack( DIRS data/bufr DONT_PACK_REGEX "*.bufr" )
|
|
|
|
#ecbuild_dont_pack( DIRS data/tigge DONT_PACK_REGEX "*.grib" )
|
2013-03-25 12:04:10 +00:00
|
|
|
|
2014-07-11 15:50:30 +00:00
|
|
|
add_custom_target(dist COMMAND ${CMAKE_MAKE_PROGRAM} package_source)
|
|
|
|
|
2016-04-13 15:12:21 +00:00
|
|
|
###############################################################################
|
2013-04-03 10:45:13 +00:00
|
|
|
# export to other projects
|
2013-03-25 12:04:10 +00:00
|
|
|
|
2013-05-14 16:38:40 +00:00
|
|
|
# temporary -- add support for ecbuild 1.0.x sub-project inclusion
|
|
|
|
# to remove once mars server & client use eckit & ecbuild >= 1.1
|
2013-04-23 08:59:14 +00:00
|
|
|
|
2015-01-19 10:23:02 +00:00
|
|
|
if( EC_HAVE_FORTRAN )
|
2015-02-18 10:14:22 +00:00
|
|
|
list( APPEND ECCODES_INCLUDE_DIRS ${CMAKE_Fortran_MODULE_DIRECTORY} )
|
2015-02-27 18:21:10 +00:00
|
|
|
list( APPEND ECCODES_LIBRARIES eccodes_f90 )
|
2015-01-19 10:23:02 +00:00
|
|
|
endif()
|
|
|
|
|
2016-04-07 15:51:07 +00:00
|
|
|
# Bundle
|
2015-01-27 10:26:33 +00:00
|
|
|
if( NOT PROJECT_NAME STREQUAL CMAKE_PROJECT_NAME )
|
2015-09-22 10:42:54 +00:00
|
|
|
set( ECCODES_FOUND TRUE PARENT_SCOPE )
|
|
|
|
set( ECCODES_DEFINITIONS ${ECCODES_DEFINITIONS} PARENT_SCOPE )# includes already TPL definitions
|
|
|
|
set( ECCODES_INCLUDE_DIRS ${ECCODES_INCLUDE_DIRS} ${ECCODES_EXTRA_INCLUDE_DIRS} PARENT_SCOPE )
|
|
|
|
set( ECCODES_LIBRARIES ${ECCODES_LIBRARIES} ${ECCODES_EXTRA_LIBRARIES} ${CMATH_LIBRARIES} PARENT_SCOPE )
|
2015-10-21 16:31:19 +00:00
|
|
|
set( ECCODES_INSTALL_EXTRA_TOOLS ${ECCODES_INSTALL_EXTRA_TOOLS} PARENT_SCOPE )
|
2016-04-07 15:51:07 +00:00
|
|
|
set( ECCODES_DEFINITION_PATH ${CMAKE_BINARY_DIR}/${ECCODES_DEFINITION_SUFF} PARENT_SCOPE )
|
|
|
|
set( ECCODES_SAMPLES_PATH ${CMAKE_BINARY_DIR}/${ECCODES_SAMPLES_SUFF} PARENT_SCOPE )
|
|
|
|
set( ECCODES_IFS_SAMPLES_PATH ${CMAKE_BINARY_DIR}/${ECCODES_IFS_SAMPLES_SUFF} PARENT_SCOPE )
|
2013-03-25 12:04:10 +00:00
|
|
|
endif()
|
|
|
|
|
2015-01-29 13:07:39 +00:00
|
|
|
# pkg-config
|
|
|
|
ecbuild_pkgconfig(
|
2016-06-06 12:22:29 +00:00
|
|
|
NAME eccodes
|
|
|
|
URL "https://software.ecmwf.int/wiki/display/ECC/"
|
|
|
|
DESCRIPTION "The ecCodes library"
|
|
|
|
LIBRARIES eccodes
|
|
|
|
VARIABLES HAVE_JPG HAVE_LIBJASPER HAVE_LIBOPENJPEG
|
|
|
|
HAVE_ECCODES_THREADS HAVE_ECCODES_OMP_THREADS
|
|
|
|
HAVE_NETCDF HAVE_PYTHON HAVE_FORTRAN HAVE_PNG HAVE_AEC
|
2015-01-29 13:07:39 +00:00
|
|
|
)
|
|
|
|
if( EC_HAVE_FORTRAN )
|
2015-02-05 16:57:47 +00:00
|
|
|
ecbuild_pkgconfig(
|
|
|
|
NAME eccodes_f90
|
|
|
|
URL "https://software.ecmwf.int/wiki/display/ECC/"
|
2015-02-13 18:04:42 +00:00
|
|
|
LIBRARIES eccodes_f90 eccodes
|
2015-02-05 16:57:47 +00:00
|
|
|
DESCRIPTION "The ecCodes library for Fortran 90"
|
|
|
|
IGNORE_INCLUDE_DIRS ${CMAKE_CURRENT_SOURCE_DIR}/fortran ${PROJECT_BINARY_DIR}/fortran
|
2016-06-06 12:22:29 +00:00
|
|
|
VARIABLES HAVE_JPG HAVE_LIBJASPER HAVE_LIBOPENJPEG
|
|
|
|
HAVE_ECCODES_THREADS HAVE_ECCODES_OMP_THREADS
|
|
|
|
HAVE_NETCDF HAVE_PYTHON HAVE_PNG HAVE_AEC
|
2015-02-05 16:57:47 +00:00
|
|
|
)
|
2015-01-29 13:07:39 +00:00
|
|
|
endif()
|
|
|
|
|
2016-04-13 15:12:21 +00:00
|
|
|
###############################################################################
|
2013-03-25 12:04:10 +00:00
|
|
|
# finalize
|
|
|
|
|
2014-03-31 12:57:06 +00:00
|
|
|
ecbuild_install_project( NAME ${CMAKE_PROJECT_NAME} )
|
2013-03-25 12:04:10 +00:00
|
|
|
|
|
|
|
ecbuild_print_summary()
|
2015-10-02 09:03:28 +00:00
|
|
|
|
2016-04-14 10:10:15 +00:00
|
|
|
ecbuild_info("")
|
|
|
|
ecbuild_info(" +---------------------------+")
|
2016-05-23 10:30:36 +00:00
|
|
|
ecbuild_info(" | ecCodes version ${ECCODES_VERSION} |")
|
2016-04-14 10:10:15 +00:00
|
|
|
ecbuild_info(" | Configuration completed |")
|
|
|
|
ecbuild_info(" +---------------------------+")
|
|
|
|
ecbuild_info("")
|
|
|
|
ecbuild_info(" You can now do 'make' to compile the package, 'ctest' to test it and 'make install' to install it afterwards.")
|
|
|
|
ecbuild_info("")
|
|
|
|
ecbuild_info("")
|