diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2003-01-11 16:27:13 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2003-01-11 16:27:13 (GMT) |
commit | 64f6711e1ccfd4a310d7a3dcae54f1b2f6f59cdb (patch) | |
tree | 966c971da895f2ebbaf970197b5e553cfc863697 /Source | |
parent | a0ffb9293f506a6d8a6500031354cc482340c919 (diff) | |
download | CMake-64f6711e1ccfd4a310d7a3dcae54f1b2f6f59cdb.zip CMake-64f6711e1ccfd4a310d7a3dcae54f1b2f6f59cdb.tar.gz CMake-64f6711e1ccfd4a310d7a3dcae54f1b2f6f59cdb.tar.bz2 |
Try to fix cygwin build
Diffstat (limited to 'Source')
-rw-r--r-- | Source/CTest/Curl/Platforms/WindowsCache.cmake | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Source/CTest/Curl/Platforms/WindowsCache.cmake b/Source/CTest/Curl/Platforms/WindowsCache.cmake index 99cf40e..e0b76d6 100644 --- a/Source/CTest/Curl/Platforms/WindowsCache.cmake +++ b/Source/CTest/Curl/Platforms/WindowsCache.cmake @@ -1,3 +1,4 @@ +IF(NOT UNIX) IF(WIN32) SET(HAVE_LIBWINMM 1) SET(HAVE_LIBWS2_32 1) @@ -106,4 +107,5 @@ IF(WIN32) ELSE(WIN32) MESSAGE("This file should be included on Windows platform only") -ENDIF(WIN32)
\ No newline at end of file +ENDIF(WIN32) +ENDIF(NOT UNIX)
\ No newline at end of file |