diff options
Diffstat (limited to 'Modules/CPack.cmake')
-rw-r--r-- | Modules/CPack.cmake | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Modules/CPack.cmake b/Modules/CPack.cmake index 913d874..50c55a7 100644 --- a/Modules/CPack.cmake +++ b/Modules/CPack.cmake @@ -99,6 +99,10 @@ IF(NOT CPACK_GENERATOR) SET(CPACK_GENERATOR "STGZ;TGZ;TZ") ENDIF(APPLE) SET(CPACK_SOURCE_GENERATOR "TGZ;TZ") + IF(CYGWIN) + SET(CPACK_SOURCE_GENERATOR "CygwinSource") + SET(CPACK_GENERATOR "CygwinBinary") + ENDIF(CYGWIN) ELSE(UNIX) SET(CPACK_GENERATOR "NSIS;ZIP") SET(CPACK_SOURCE_GENERATOR "ZIP") |