blob: a1807d590dd7264e2a2c07aa0af3668482891248 [file] [log] [blame]
James Kuszmaulb13e13f2023-11-22 20:44:04 -08001macro(download_and_check source destination)
Maxwell Henderson80bec322024-01-09 15:48:44 -08002 file(DOWNLOAD ${source} ${destination} STATUS download_status)
3 list(GET download_status 0 status_code)
4 list(GET download_status 1 status_message)
James Kuszmaulb13e13f2023-11-22 20:44:04 -08005
Maxwell Henderson80bec322024-01-09 15:48:44 -08006 if(${status_code} EQUAL 0)
7 message(VERBOSE "Download of \"${source}\" successful.")
8 else()
9 message(FATAL_ERROR "Download of \"${source}\" failed: ${status_message}")
10 endif()
James Kuszmaulb13e13f2023-11-22 20:44:04 -080011endmacro()