summaryrefslogtreecommitdiffstats
path: root/Utilities/Release/dash2win64_release.cmake
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2014-12-18 15:42:21 (GMT)
committerBrad King <brad.king@kitware.com>2014-12-22 13:47:46 (GMT)
commit202056cdb89da39e35d8af745c1ff0852a9be75d (patch)
treef69d20b48a8898ff988a0eb5c171c89025ffb4fd /Utilities/Release/dash2win64_release.cmake
parentd64caa5372b182ce48f752c9afb9141d56055bd2 (diff)
downloadCMake-202056cdb89da39e35d8af745c1ff0852a9be75d.zip
CMake-202056cdb89da39e35d8af745c1ff0852a9be75d.tar.gz
CMake-202056cdb89da39e35d8af745c1ff0852a9be75d.tar.bz2
Utilities/Release: Build Windows and OS X binaries with native SSL
For the nightly binaries, turn of CMAKE_USE_OPENSSL on Windows and OS X 10.6+ platforms. This will activate the new curl behavior to use the OS-native SSL/TLS implementation.
Diffstat (limited to 'Utilities/Release/dash2win64_release.cmake')
-rw-r--r--Utilities/Release/dash2win64_release.cmake7
1 files changed, 6 insertions, 1 deletions
diff --git a/Utilities/Release/dash2win64_release.cmake b/Utilities/Release/dash2win64_release.cmake
index 848e2f4..345870b 100644
--- a/Utilities/Release/dash2win64_release.cmake
+++ b/Utilities/Release/dash2win64_release.cmake
@@ -7,8 +7,13 @@ set(CPACK_BINARY_GENERATORS "NSIS ZIP")
set(CPACK_SOURCE_GENERATORS "ZIP")
set(MAKE_PROGRAM "make")
set(MAKE "${MAKE_PROGRAM} -j8")
+if(CMAKE_CREATE_VERSION STREQUAL "nightly")
+ set(CMAKE_USE_OPENSSL OFF)
+else()
+ set(CMAKE_USE_OPENSSL ON)
+endif()
set(INITIAL_CACHE "CMAKE_BUILD_TYPE:STRING=Release
-CMAKE_USE_OPENSSL:BOOL=ON
+CMAKE_USE_OPENSSL:BOOL=${CMAKE_USE_OPENSSL}
CMAKE_SKIP_BOOTSTRAP_TEST:STRING=TRUE
CMAKE_Fortran_COMPILER:FILEPATH=FALSE
CMAKE_GENERATOR:INTERNAL=Unix Makefiles