2016-04-13 15:12:21 +00:00
|
|
|
#
|
2017-01-03 11:03:48 +00:00
|
|
|
# Copyright 2005-2017 ECMWF.
|
2016-04-13 15:12:21 +00:00
|
|
|
#
|
|
|
|
# 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
|
|
|
# tools library
|
|
|
|
ecbuild_add_library( TARGET grib_tools
|
2014-06-18 16:14:01 +00:00
|
|
|
TYPE STATIC
|
2013-04-10 15:46:41 +00:00
|
|
|
NOINSTALL
|
2014-06-18 16:14:01 +00:00
|
|
|
SOURCES grib_tools.c grib_options.c grib_tools.h
|
2015-02-13 18:04:42 +00:00
|
|
|
LIBS eccodes )
|
2013-03-25 12:04:10 +00:00
|
|
|
|
|
|
|
# tools binaries
|
|
|
|
list( APPEND grib_tools_bins
|
2015-02-01 20:53:53 +00:00
|
|
|
codes_info codes_count
|
2015-01-25 15:31:33 +00:00
|
|
|
grib_histogram grib_filter grib_ls grib_dump grib_merge
|
|
|
|
grib2ppm grib_set grib_get grib_get_data grib_copy
|
2015-06-22 16:38:38 +00:00
|
|
|
grib_compare codes_parser grib_index_build
|
2016-02-11 17:47:08 +00:00
|
|
|
bufr_ls bufr_dump bufr_set bufr_get
|
2014-12-18 11:33:47 +00:00
|
|
|
bufr_copy bufr_compare bufr_index_build
|
2016-04-04 13:27:04 +00:00
|
|
|
gts_get gts_compare gts_copy gts_dump gts_filter gts_ls
|
2016-04-04 14:12:39 +00:00
|
|
|
metar_dump metar_ls metar_compare metar_get metar_filter metar_copy
|
2014-12-18 11:33:47 +00:00
|
|
|
)
|
2013-03-25 12:04:10 +00:00
|
|
|
|
2016-01-11 11:22:10 +00:00
|
|
|
list( APPEND grib_tools_bins_EXTRA
|
2015-01-25 15:31:33 +00:00
|
|
|
big2gribex
|
|
|
|
gg_sub_area_check
|
|
|
|
grib_repair
|
|
|
|
grib_to_json
|
2015-09-25 17:11:52 +00:00
|
|
|
grib_check_gaussian_grid
|
2015-01-25 15:31:33 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
# Install generic tools
|
2013-03-25 12:04:10 +00:00
|
|
|
foreach( tool ${grib_tools_bins} )
|
|
|
|
# here we use the fact that each tool has only one C file that matches its name
|
|
|
|
ecbuild_add_executable( TARGET ${tool}
|
2014-06-18 16:14:01 +00:00
|
|
|
SOURCES ${tool}.c
|
|
|
|
LIBS grib_tools )
|
2015-01-25 15:31:33 +00:00
|
|
|
endforeach()
|
2013-03-25 12:04:10 +00:00
|
|
|
|
2016-01-11 11:22:10 +00:00
|
|
|
# Install extra tools
|
|
|
|
# User must run cmake with -DECCODES_INSTALL_EXTRA_TOOLS=ON
|
|
|
|
foreach( tool ${grib_tools_bins_EXTRA} )
|
2015-01-25 15:31:33 +00:00
|
|
|
ecbuild_add_executable( TARGET ${tool}
|
|
|
|
SOURCES ${tool}.c
|
2015-10-21 16:31:19 +00:00
|
|
|
CONDITION ECCODES_INSTALL_EXTRA_TOOLS
|
2015-01-25 15:31:33 +00:00
|
|
|
LIBS grib_tools )
|
2013-03-25 12:04:10 +00:00
|
|
|
endforeach()
|
|
|
|
|
2016-01-11 11:22:10 +00:00
|
|
|
# grib_count/bufr_count tools. Same source code, different executable names
|
2015-02-01 20:53:53 +00:00
|
|
|
ecbuild_add_executable( TARGET grib_count
|
|
|
|
SOURCES codes_count.c
|
|
|
|
LIBS grib_tools )
|
|
|
|
ecbuild_add_executable( TARGET bufr_count
|
|
|
|
SOURCES codes_count.c
|
|
|
|
LIBS grib_tools )
|
|
|
|
|
2015-02-05 16:57:47 +00:00
|
|
|
# grib to netcdf is optional
|
|
|
|
ecbuild_add_executable( TARGET grib_to_netcdf
|
|
|
|
SOURCES grib_to_netcdf.c
|
|
|
|
INCLUDES ${NETCDF_INCLUDE_DIRS}
|
|
|
|
CONDITION HAVE_NETCDF
|
|
|
|
LIBS grib_tools ${NETCDF_LIBRARIES})
|
2016-01-11 11:25:08 +00:00
|
|
|
|
|
|
|
|
2014-12-18 11:33:47 +00:00
|
|
|
ecbuild_add_executable( TARGET grib_list_keys
|
|
|
|
SOURCES list_keys.c
|
2015-10-21 16:31:19 +00:00
|
|
|
CONDITION ECCODES_INSTALL_EXTRA_TOOLS
|
2014-12-18 11:33:47 +00:00
|
|
|
LIBS grib_tools )
|
2013-03-25 12:04:10 +00:00
|
|
|
|
2016-02-11 17:47:08 +00:00
|
|
|
ecbuild_add_executable( TARGET codes_bufr_filter
|
|
|
|
SOURCES bufr_filter.c
|
|
|
|
LIBS grib_tools )
|
|
|
|
|
|
|
|
|
2015-01-25 15:31:33 +00:00
|
|
|
# grib1to2 script needs to be generated before installation
|
2015-10-21 16:31:19 +00:00
|
|
|
if (ECCODES_INSTALL_EXTRA_TOOLS)
|
2015-01-25 15:31:33 +00:00
|
|
|
configure_file( grib1to2.in grib1to2 )
|
|
|
|
install( FILES ${CMAKE_CURRENT_BINARY_DIR}/grib1to2
|
|
|
|
DESTINATION ${INSTALL_BIN_DIR}
|
|
|
|
PERMISSIONS OWNER_EXECUTE OWNER_WRITE OWNER_READ
|
|
|
|
GROUP_EXECUTE GROUP_READ
|
|
|
|
WORLD_EXECUTE WORLD_READ )
|
|
|
|
endif()
|
|
|
|
########################################
|
|
|
|
|
|
|
|
# BUFR compare script
|
2014-12-18 11:33:47 +00:00
|
|
|
install( FILES ${CMAKE_CURRENT_SOURCE_DIR}/bufr_compare_dir
|
|
|
|
DESTINATION ${INSTALL_BIN_DIR}
|
|
|
|
PERMISSIONS OWNER_EXECUTE OWNER_WRITE OWNER_READ
|
|
|
|
GROUP_EXECUTE GROUP_READ
|
|
|
|
WORLD_EXECUTE WORLD_READ )
|
2013-03-25 12:04:10 +00:00
|
|
|
|
2016-02-11 17:47:08 +00:00
|
|
|
|
|
|
|
# bufr_filter script (See ECC-205)
|
2016-02-19 14:00:53 +00:00
|
|
|
execute_process( COMMAND ${CMAKE_COMMAND} -E copy_if_different
|
|
|
|
${PROJECT_SOURCE_DIR}/tools/bufr_filter
|
|
|
|
${CMAKE_BINARY_DIR}/bin/ )
|
|
|
|
|
2016-02-11 17:47:08 +00:00
|
|
|
install( FILES ${CMAKE_CURRENT_SOURCE_DIR}/bufr_filter
|
|
|
|
DESTINATION ${INSTALL_BIN_DIR}
|
|
|
|
PERMISSIONS OWNER_EXECUTE OWNER_WRITE OWNER_READ
|
|
|
|
GROUP_EXECUTE GROUP_READ
|
|
|
|
WORLD_EXECUTE WORLD_READ )
|
|
|
|
|