2016-09-27 19:01:08 +00:00
|
|
|
# Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
|
|
# file Copyright.txt or https://cmake.org/licensing for details.
|
|
|
|
|
2013-10-15 15:17:36 +00: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.
|
2001-10-23 21:06:19 +00:00
|
|
|
|
2012-11-03 20:35:44 +00:00
|
|
|
include(${CMAKE_CURRENT_LIST_DIR}/FindCygwin.cmake)
|
2001-11-02 21:44:00 +00:00
|
|
|
|
2012-08-13 17:47:32 +00:00
|
|
|
find_program(WGET_EXECUTABLE
|
2001-12-04 15:55:17 +00:00
|
|
|
wget
|
|
|
|
${CYGWIN_INSTALL_PATH}/bin
|
|
|
|
)
|
|
|
|
|
2012-08-13 17:47:32 +00:00
|
|
|
include(${CMAKE_CURRENT_LIST_DIR}/FindPackageHandleStandardArgs.cmake)
|
2007-07-23 13:49:52 +00:00
|
|
|
FIND_PACKAGE_HANDLE_STANDARD_ARGS(Wget DEFAULT_MSG WGET_EXECUTABLE)
|
2002-09-02 16:05:40 +00:00
|
|
|
|
2012-08-13 17:47:32 +00:00
|
|
|
mark_as_advanced( WGET_EXECUTABLE )
|
2002-09-02 16:05:40 +00:00
|
|
|
|
|
|
|
# WGET option is deprecated.
|
|
|
|
# use WGET_EXECUTABLE instead.
|
2016-11-22 21:18:04 +00:00
|
|
|
set (WGET ${WGET_EXECUTABLE})
|