mirror of https://github.com/ecmwf/eccodes.git
11 lines
428 B
CMake
11 lines
428 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_get_tigge_gribs
|
|
NOCHECK
|
|
NAMES ${tigge_files_to_download} )
|