2016-09-27 15:01:08 -04: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 11:17:36 -04: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 17:06:19 -04:00
|
|
|
|
2012-11-03 21:35:44 +01:00
|
|
|
include(${CMAKE_CURRENT_LIST_DIR}/FindCygwin.cmake)
|
2001-11-02 16:44:00 -05:00
|
|
|
|
2012-08-13 13:47:32 -04:00
|
|
|
find_program(WGET_EXECUTABLE
|
2001-12-04 10:55:17 -05:00
|
|
|
wget
|
|
|
|
${CYGWIN_INSTALL_PATH}/bin
|
|
|
|
)
|
|
|
|
|
2012-08-13 13:42:58 -04:00
|
|
|
# handle the QUIETLY and REQUIRED arguments and set WGET_FOUND to TRUE if
|
2007-07-19 09:00:51 -04:00
|
|
|
# all listed variables are TRUE
|
2012-08-13 13:47:32 -04:00
|
|
|
include(${CMAKE_CURRENT_LIST_DIR}/FindPackageHandleStandardArgs.cmake)
|
2007-07-23 09:49:52 -04:00
|
|
|
FIND_PACKAGE_HANDLE_STANDARD_ARGS(Wget DEFAULT_MSG WGET_EXECUTABLE)
|
2002-09-02 12:05:40 -04:00
|
|
|
|
2012-08-13 13:47:32 -04:00
|
|
|
mark_as_advanced( WGET_EXECUTABLE )
|
2002-09-02 12:05:40 -04:00
|
|
|
|
|
|
|
# WGET option is deprecated.
|
|
|
|
# use WGET_EXECUTABLE instead.
|
2012-08-13 13:47:32 -04:00
|
|
|
set (WGET ${WGET_EXECUTABLE} )
|