Adding new binary installer locations to make files #4587
This commit is contained in:
parent
fcf68d1ce4
commit
c3f003bf5b
|
@ -30,7 +30,8 @@ if (WIN32)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
if (APPLE)
|
if (APPLE)
|
||||||
set(OPENSSL_INCLUDE ../../../../ext/openssl/include)
|
set(OPENSSL_PLAT_DIR openssl-osx)
|
||||||
|
set(OPENSSL_INCLUDE ../../../../ext/${OPENSSL_PLAT_DIR}/include)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
include_directories(
|
include_directories(
|
||||||
|
@ -51,8 +52,8 @@ endif()
|
||||||
if (UNIX)
|
if (UNIX)
|
||||||
if (APPLE)
|
if (APPLE)
|
||||||
set(OPENSSL_LIBS
|
set(OPENSSL_LIBS
|
||||||
${CMAKE_SOURCE_DIR}/ext/openssl/libssl.a
|
${CMAKE_SOURCE_DIR}/ext/${OPENSSL_PLAT_DIR}/libssl.a
|
||||||
${CMAKE_SOURCE_DIR}/ext/openssl/libcrypto.a
|
${CMAKE_SOURCE_DIR}/ext/${OPENSSL_PLAT_DIR}/libcrypto.a
|
||||||
)
|
)
|
||||||
else()
|
else()
|
||||||
set(OPENSSL_LIBS ssl crypto)
|
set(OPENSSL_LIBS ssl crypto)
|
||||||
|
|
Loading…
Reference in New Issue