mirror of
https://github.com/reactos/CMake.git
synced 2024-12-15 23:57:44 +00:00
15 lines
168 B
CMake
15 lines
168 B
CMake
#
|
|
# this module looks for wget
|
|
#
|
|
|
|
INCLUDE(${CMAKE_ROOT}/Modules/FindCygwin.cmake)
|
|
|
|
FIND_PROGRAM(WGET
|
|
wget
|
|
${CYGWIN_INSTALL_PATH}/bin
|
|
)
|
|
|
|
MARK_AS_ADVANCED(
|
|
WGET
|
|
)
|