eccodes/data/gts/CMakeLists.txt

28 lines
861 B
CMake
Raw Normal View History

2015-03-17 17:18:18 +00:00
# data/gts/CMakeLists.txt
# Download all the GTS data and reference files from website
#
FILE(READ "gts_data_files.txt" gts_files_to_download)
STRING(REGEX REPLACE "\n" ";" gts_files_to_download "${gts_files_to_download}")
FILE(READ "gts_ref_files.txt" gts_refs_to_download)
STRING(REGEX REPLACE "\n" ";" gts_refs_to_download "${gts_refs_to_download}")
2018-10-23 15:33:07 +00:00
if( ENABLE_EXTRA_TESTS )
ecbuild_get_test_multidata(
TARGET eccodes_download_gts
NOCHECK
NAMES ${gts_files_to_download} ${gts_refs_to_download}
)
endif()
2015-03-17 17:18:18 +00:00
# Copy other files - e.g. text files etc from the source data/gts dir
LIST(APPEND other_files
gts_data_files.txt
gts_ref_files.txt
)
foreach( file ${other_files} )
execute_process( COMMAND ${CMAKE_COMMAND} -E copy_if_different ${CMAKE_CURRENT_SOURCE_DIR}/${file} ${CMAKE_CURRENT_BINARY_DIR} )
endforeach()