Removed openssl@1.1 due to problems supporting multiple macOS versions
This commit is contained in:
parent
4d3cf2c626
commit
8ee5475447
|
@ -293,12 +293,7 @@ if (${CMAKE_SYSTEM_NAME} MATCHES "Windows")
|
||||||
${OPENSSL_ROOT}/lib/libcrypto.lib
|
${OPENSSL_ROOT}/lib/libcrypto.lib
|
||||||
)
|
)
|
||||||
elseif (${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
|
elseif (${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
|
||||||
#Try use 1.1 for the latest features. otherwise use the default
|
|
||||||
IF(EXISTS /usr/local/opt/openssl@1.1)
|
|
||||||
set (OPENSSL_ROOT /usr/local/opt/openssl@1.1)
|
|
||||||
else()
|
|
||||||
set (OPENSSL_ROOT /usr/local/opt/openssl)
|
set (OPENSSL_ROOT /usr/local/opt/openssl)
|
||||||
endif()
|
|
||||||
include_directories (BEFORE SYSTEM ${OPENSSL_ROOT}/include)
|
include_directories (BEFORE SYSTEM ${OPENSSL_ROOT}/include)
|
||||||
set (OPENSSL_LIBS
|
set (OPENSSL_LIBS
|
||||||
${OPENSSL_ROOT}/lib/libssl.a
|
${OPENSSL_ROOT}/lib/libssl.a
|
||||||
|
@ -325,7 +320,7 @@ macro (configure_files srcDir destDir)
|
||||||
set (sourceFilePath ${srcDir}/${sourceFile})
|
set (sourceFilePath ${srcDir}/${sourceFile})
|
||||||
if (IS_DIRECTORY ${sourceFilePath})
|
if (IS_DIRECTORY ${sourceFilePath})
|
||||||
message (STATUS "Copying directory ${sourceFile}")
|
message (STATUS "Copying directory ${sourceFile}")
|
||||||
make_directory (${destDir/${sourceFile})
|
make_directory (${destDir}/${sourceFile})
|
||||||
else()
|
else()
|
||||||
message (STATUS "Copying file ${sourceFile}")
|
message (STATUS "Copying file ${sourceFile}")
|
||||||
configure_file (${sourceFilePath} ${destDir}/${sourceFile} COPYONLY)
|
configure_file (${sourceFilePath} ${destDir}/${sourceFile} COPYONLY)
|
||||||
|
|
Loading…
Reference in New Issue