mirror of
https://github.com/AntelopeIO/boringssl.git
synced 2026-07-21 14:43:53 +00:00
31f1466a61
We've already put perlasm.cmake in there. I figure CMake helper files can go in there. It also seems to match what other projects too. Change-Id: Ief6b10cf4e80b8d4b52ca53b90aa425b32037e52 Reviewed-on: https://boringssl-review.googlesource.com/c/boringssl/+/56566 Auto-Submit: David Benjamin <davidben@google.com> Reviewed-by: Adam Langley <agl@google.com> Commit-Queue: David Benjamin <davidben@google.com>
33 lines
1.2 KiB
CMake
33 lines
1.2 KiB
CMake
include(${CMAKE_CURRENT_LIST_DIR}/OpenSSLTargets.cmake)
|
|
|
|
# Recursively collect dependency locations for the imported targets.
|
|
macro(_openssl_config_libraries libraries target)
|
|
get_property(_DEPS TARGET ${target} PROPERTY INTERFACE_LINK_LIBRARIES)
|
|
foreach(_DEP ${_DEPS})
|
|
if(TARGET ${_DEP})
|
|
_openssl_config_libraries(${libraries} ${_DEP})
|
|
else()
|
|
list(APPEND ${libraries} ${_DEP})
|
|
endif()
|
|
endforeach()
|
|
get_property(_LOC TARGET ${target} PROPERTY LOCATION)
|
|
list(APPEND ${libraries} ${_LOC})
|
|
endmacro()
|
|
|
|
set(OPENSSL_FOUND YES)
|
|
get_property(OPENSSL_INCLUDE_DIR TARGET OpenSSL::SSL PROPERTY INTERFACE_INCLUDE_DIRECTORIES)
|
|
get_property(OPENSSL_CRYPTO_LIBRARY TARGET OpenSSL::Crypto PROPERTY LOCATION)
|
|
_openssl_config_libraries(OPENSSL_CRYPTO_LIBRARIES OpenSSL::Crypto)
|
|
list(REMOVE_DUPLICATES OPENSSL_CRYPTO_LIBRARIES)
|
|
|
|
get_property(OPENSSL_SSL_LIBRARY TARGET OpenSSL::Crypto PROPERTY LOCATION)
|
|
_openssl_config_libraries(OPENSSL_SSL_LIBRARIES OpenSSL::SSL)
|
|
list(REMOVE_DUPLICATES OPENSSL_SSL_LIBRARIES)
|
|
|
|
set(OPENSSL_LIBRARIES ${OPENSSL_CRYPTO_LIBRARIES} ${OPENSSL_SSL_LIBRARIES})
|
|
list(REMOVE_DUPLICATES OPENSSL_LIBRARIES)
|
|
|
|
set(_DEP)
|
|
set(_DEPS)
|
|
set(_LOC)
|