FindWget.cmake 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. #.rst:
  2. # FindWget
  3. # --------
  4. #
  5. # Find wget
  6. #
  7. # This module looks for wget. This module defines the following values:
  8. #
  9. # ::
  10. #
  11. # WGET_EXECUTABLE: the full path to the wget tool.
  12. # WGET_FOUND: True if wget has been found.
  13. #=============================================================================
  14. # Copyright 2001-2009 Kitware, Inc.
  15. #
  16. # Distributed under the OSI-approved BSD License (the "License");
  17. # see accompanying file Copyright.txt for details.
  18. #
  19. # This software is distributed WITHOUT ANY WARRANTY; without even the
  20. # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  21. # See the License for more information.
  22. #=============================================================================
  23. # (To distribute this file outside of CMake, substitute the full
  24. # License text for the above reference.)
  25. include(${CMAKE_CURRENT_LIST_DIR}/FindCygwin.cmake)
  26. find_program(WGET_EXECUTABLE
  27. wget
  28. ${CYGWIN_INSTALL_PATH}/bin
  29. )
  30. # handle the QUIETLY and REQUIRED arguments and set WGET_FOUND to TRUE if
  31. # all listed variables are TRUE
  32. include(${CMAKE_CURRENT_LIST_DIR}/FindPackageHandleStandardArgs.cmake)
  33. FIND_PACKAGE_HANDLE_STANDARD_ARGS(Wget DEFAULT_MSG WGET_EXECUTABLE)
  34. mark_as_advanced( WGET_EXECUTABLE )
  35. # WGET option is deprecated.
  36. # use WGET_EXECUTABLE instead.
  37. set (WGET ${WGET_EXECUTABLE} )