mirror of
https://github.com/reactos/CMake.git
synced 2024-12-03 17:11:04 +00:00
21 lines
265 B
CMake
21 lines
265 B
CMake
#
|
|
# this module looks for wget
|
|
#
|
|
|
|
INCLUDE(${CMAKE_ROOT}/Modules/FindCygwin.cmake)
|
|
|
|
IF (CYGWIN_INSTALL_PATH)
|
|
|
|
FIND_PROGRAM(WGET
|
|
wget
|
|
${CYGWIN_INSTALL_PATH}/bin
|
|
)
|
|
|
|
ELSE (CYGWIN_INSTALL_PATH)
|
|
|
|
FIND_PROGRAM(WGET
|
|
wget
|
|
)
|
|
|
|
ENDIF (CYGWIN_INSTALL_PATH)
|