cmake/Modules/FindWget.cmake

32 lines
757 B
CMake
Raw Normal View History

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.
2014-08-03 19:52:23 +02: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.
2013-03-16 19:13:01 +02:00
include(${CMAKE_CURRENT_LIST_DIR}/FindCygwin.cmake)
2013-03-16 19:13:01 +02:00
find_program(WGET_EXECUTABLE
wget
${CYGWIN_INSTALL_PATH}/bin
)
2013-03-16 19:13:01 +02:00
include(${CMAKE_CURRENT_LIST_DIR}/FindPackageHandleStandardArgs.cmake)
FIND_PACKAGE_HANDLE_STANDARD_ARGS(Wget DEFAULT_MSG WGET_EXECUTABLE)
2013-03-16 19:13:01 +02:00
mark_as_advanced( WGET_EXECUTABLE )
# WGET option is deprecated.
# use WGET_EXECUTABLE instead.
2017-04-14 19:02:05 +02:00
set (WGET ${WGET_EXECUTABLE})