You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
262 B
15 lines
262 B
16 years ago
|
# - this module looks for Cygwin
|
||
|
#
|
||
|
|
||
|
IF (WIN32)
|
||
|
FIND_PATH(CYGWIN_INSTALL_PATH
|
||
|
cygwin.bat
|
||
|
"C:/Cygwin"
|
||
|
"[HKEY_LOCAL_MACHINE\\SOFTWARE\\Cygnus Solutions\\Cygwin\\mounts v2\\/;native]"
|
||
|
)
|
||
|
|
||
|
MARK_AS_ADVANCED(
|
||
|
CYGWIN_INSTALL_PATH
|
||
|
)
|
||
|
ENDIF (WIN32)
|