summaryrefslogtreecommitdiffstats
path: root/cmake/FindWrapOpenSSL.cmake
blob: a09aa99518e31a6b161e6969037c947cfc8c83df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# We can't create the same interface imported target multiple times, CMake will complain if we do
# that. This can happen if the find_package call is done in multiple different subdirectories.
if(TARGET WrapOpenSSL::WrapOpenSSL)
    set(WrapOpenSSL_FOUND ON)
    return()
endif()

set(WrapOpenSSL_FOUND OFF)

# Reuse logic from the headers find script.
find_package(WrapOpenSSLHeaders ${WrapOpenSSL_FIND_VERSION})

if(OpenSSL_FOUND)
    if(WIN32)
        get_target_property(libType OpenSSL::Crypto TYPE)
        if(libType STREQUAL "ALIAS")
            get_target_property(writableLib OpenSSL::Crypto ALIASED_TARGET)
        else()
            set(writableLib OpenSSL::Crypto)
        endif()
        set_property(TARGET ${writableLib} APPEND PROPERTY INTERFACE_LINK_LIBRARIES Ws2_32 Crypt32)
        unset(libType)
        unset(writableLib)
    endif()

    set(WrapOpenSSL_FOUND ON)

    add_library(WrapOpenSSL::WrapOpenSSL INTERFACE IMPORTED)
    target_link_libraries(WrapOpenSSL::WrapOpenSSL INTERFACE OpenSSL::SSL)
endif()

include(FindPackageHandleStandardArgs)
find_package_handle_standard_args(WrapOpenSSL DEFAULT_MSG WrapOpenSSL_FOUND)