# #openssl # #The official openssl tarball requires file system links in order to simply unpack the source! #Consequently, on Windows we choose to use a binary distribution. if (WIN32) ExternalProject_Add ( openssl PREFIX ${CMAKE_INSTALL_PREFIX} BUILD_IN_SOURCE 1 #We will install directly from the source, so no build directory is needed URL http://openssl-for-windows.googlecode.com/files/openssl-0.9.8k_WIN32.zip URL_MD5 035e333060209eaa146a44351dbfef30 UPDATE_COMMAND "" CONFIGURE_COMMAND "" BUILD_COMMAND "" INSTALL_COMMAND ${CMAKE_COMMAND} -E copy_directory ) endif (WIN32)