mirror of
https://github.com/reactos/CMake.git
synced 2025-02-19 11:00:58 +00:00
24 lines
615 B
CMake
24 lines
615 B
CMake
# Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
# file Copyright.txt or https://cmake.org/licensing for details.
|
|
|
|
#.rst:
|
|
# FindCygwin
|
|
# ----------
|
|
#
|
|
# this module looks for Cygwin
|
|
|
|
if (WIN32)
|
|
find_program(CYGWIN_INSTALL_PATH
|
|
NAMES cygwin.bat
|
|
PATHS
|
|
"C:/Cygwin"
|
|
"C:/Cygwin64"
|
|
"[HKEY_LOCAL_MACHINE\\SOFTWARE\\Cygwin\\setup;rootdir]"
|
|
"[HKEY_LOCAL_MACHINE\\SOFTWARE\\Cygnus Solutions\\Cygwin\\mounts v2\\/;native]"
|
|
)
|
|
get_filename_component(CYGWIN_INSTALL_PATH "${CYGWIN_INSTALL_PATH}" DIRECTORY)
|
|
mark_as_advanced(
|
|
CYGWIN_INSTALL_PATH
|
|
)
|
|
endif ()
|