summaryrefslogtreecommitdiff
path: root/cmake/navit_download.cmake
blob: 6f6cc8f515d74417307866b5328684ca6b65abd1 (plain)
1
2
3
4
5
6
7
8
message("Downloading ${URL}")
file(DOWNLOAD ${URL} ${DST} SHOW_PROGRESS STATUS DOWNLOAD_STATUS)
list(GET DOWNLOAD_STATUS 0 DOWNLOAD_ERR)
list(GET DOWNLOAD_STATUS 1 DOWNLOAD_MSG)
if(DOWNLOAD_ERR)
  message(WARNING "Download of sample map from ${URL} failed: ${DOWNLOAD_MSG}.")
  file(REMOVE ${DST})
endif(DOWNLOAD_ERR)