2013-10-15 19: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-24 01:06:19 +04:00
|
|
|
|
2009-09-28 19:45:50 +04:00
|
|
|
#=============================================================================
|
|
|
|
# Copyright 2001-2009 Kitware, Inc.
|
|
|
|
#
|
|
|
|
# Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
# see accompanying file Copyright.txt for details.
|
|
|
|
#
|
|
|
|
# This software is distributed WITHOUT ANY WARRANTY; without even the
|
|
|
|
# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
# See the License for more information.
|
|
|
|
#=============================================================================
|
2010-08-07 04:48:47 +04:00
|
|
|
# (To distribute this file outside of CMake, substitute the full
|
2009-09-28 19:45:50 +04:00
|
|
|
# License text for the above reference.)
|
|
|
|
|
2012-11-04 00:35:44 +04:00
|
|
|
include(${CMAKE_CURRENT_LIST_DIR}/FindCygwin.cmake)
|
2001-11-03 00:44:00 +03:00
|
|
|
|
2012-08-13 21:47:32 +04:00
|
|
|
find_program(WGET_EXECUTABLE
|
2001-12-04 18:55:17 +03:00
|
|
|
wget
|
|
|
|
${CYGWIN_INSTALL_PATH}/bin
|
|
|
|
)
|
|
|
|
|
2012-08-13 21:42:58 +04:00
|
|
|
# handle the QUIETLY and REQUIRED arguments and set WGET_FOUND to TRUE if
|
2007-07-19 17:00:51 +04:00
|
|
|
# all listed variables are TRUE
|
2012-08-13 21:47:32 +04:00
|
|
|
include(${CMAKE_CURRENT_LIST_DIR}/FindPackageHandleStandardArgs.cmake)
|
2007-07-23 17:49:52 +04:00
|
|
|
FIND_PACKAGE_HANDLE_STANDARD_ARGS(Wget DEFAULT_MSG WGET_EXECUTABLE)
|
2002-09-02 20:05:40 +04:00
|
|
|
|
2012-08-13 21:47:32 +04:00
|
|
|
mark_as_advanced( WGET_EXECUTABLE )
|
2002-09-02 20:05:40 +04:00
|
|
|
|
|
|
|
# WGET option is deprecated.
|
|
|
|
# use WGET_EXECUTABLE instead.
|
2012-08-13 21:47:32 +04:00
|
|
|
set (WGET ${WGET_EXECUTABLE} )
|