Add the option to support an Apple-style xcframework for tls, ssl, and crypto

This commit is contained in:
Cameron Lowell Palmer 2021-10-15 09:29:03 +02:00
parent 0319bb7edb
commit 6318b4ec48

View File

@ -352,6 +352,19 @@ if(LIBRESSL_APPS AND LIBRESSL_TESTS)
add_subdirectory(tests) add_subdirectory(tests)
endif() endif()
if (BUILD_APPLE_XCFRAMEWORK)
# Create the super library from object libraries
add_library(LibreSSL_xcframework
$<TARGET_OBJECTS:crypto_obj> $<TARGET_OBJECTS:tls_obj> $<TARGET_OBJECTS:ssl_obj>)
set_target_properties(LibreSSL_xcframework PROPERTIES
OUTPUT_NAME ressl)
if(ENABLE_LIBRESSL_INSTALL)
install(TARGETS LibreSSL_xcframework
LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR})
endif(ENABLE_LIBRESSL_INSTALL)
endif(BUILD_APPLE_XCFRAMEWORK)
if(NOT MSVC) if(NOT MSVC)
# Create pkgconfig files. # Create pkgconfig files.
set(prefix ${CMAKE_INSTALL_PREFIX}) set(prefix ${CMAKE_INSTALL_PREFIX})