mirror of https://github.com/ecmwf/eccodes.git
13 lines
521 B
CMake
13 lines
521 B
CMake
# data/tigge/CMakeLists.txt
|
|
# Download all the TIGGE grib data from website
|
|
|
|
file(READ "tigge_data_files.txt" tigge_files_to_download)
|
|
string(REGEX REPLACE "\n" ";" tigge_files_to_download "${tigge_files_to_download}")
|
|
|
|
# Download all data files doing md5 check on each
|
|
ecbuild_get_test_multidata( TARGET eccodes_download_tigge_gribs
|
|
NOCHECK
|
|
NAMES ${tigge_files_to_download} )
|
|
set_property( TEST eccodes_download_tigge_gribs APPEND PROPERTY LABELS download_data )
|
|
|