2016-10-30 18:24:19 +01:00
|
|
|
# Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
|
|
# file Copyright.txt or https://cmake.org/licensing for details.
|
|
|
|
|
2019-11-11 23:01:05 +01:00
|
|
|
#[=======================================================================[.rst:
|
|
|
|
FindWget
|
|
|
|
--------
|
|
|
|
|
|
|
|
Find wget
|
|
|
|
|
|
|
|
This module looks for wget. This module defines the following values:
|
|
|
|
|
|
|
|
::
|
|
|
|
|
|
|
|
WGET_EXECUTABLE: the full path to the wget tool.
|
|
|
|
WGET_FOUND: True if wget has been found.
|
|
|
|
#]=======================================================================]
|
2008-10-12 18:41:06 +02:00
|
|
|
|
2013-03-16 19:13:01 +02:00
|
|
|
include(${CMAKE_CURRENT_LIST_DIR}/FindCygwin.cmake)
|
2008-10-12 18:41:06 +02:00
|
|
|
|
2013-03-16 19:13:01 +02:00
|
|
|
find_program(WGET_EXECUTABLE
|
2008-10-12 18:41:06 +02:00
|
|
|
wget
|
|
|
|
${CYGWIN_INSTALL_PATH}/bin
|
|
|
|
)
|
|
|
|
|
2013-03-16 19:13:01 +02:00
|
|
|
include(${CMAKE_CURRENT_LIST_DIR}/FindPackageHandleStandardArgs.cmake)
|
2008-10-12 18:41:06 +02:00
|
|
|
FIND_PACKAGE_HANDLE_STANDARD_ARGS(Wget DEFAULT_MSG WGET_EXECUTABLE)
|
|
|
|
|
2013-03-16 19:13:01 +02:00
|
|
|
mark_as_advanced( WGET_EXECUTABLE )
|
2008-10-12 18:41:06 +02:00
|
|
|
|
|
|
|
# WGET option is deprecated.
|
|
|
|
# use WGET_EXECUTABLE instead.
|
2017-04-14 19:02:05 +02:00
|
|
|
set (WGET ${WGET_EXECUTABLE})
|