mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-07 17:46:04 -05:00
17 lines
363 B
CMake
17 lines
363 B
CMake
|
#
|
||
|
# CMake script to fetch the current HTML manual
|
||
|
#
|
||
|
message (STATUS "file: ${URL}/${NAME}")
|
||
|
file (
|
||
|
DOWNLOAD ${URL}/${NAME} contrib/${NAME}
|
||
|
TIMEOUT 10
|
||
|
STATUS manual_STATUS
|
||
|
LOG manual_LOG
|
||
|
SHOW_PROGRESS
|
||
|
)
|
||
|
list (GET manual_STATUS 0 manual_RC)
|
||
|
if (manual_RC)
|
||
|
message (WARNING "${manual_STATUS}")
|
||
|
message (FATAL_ERROR "${manual_LOG}")
|
||
|
endif (manual_RC)
|