Lines Matching +full:wolfssl +full:-
21 # SPDX-License-Identifier: curl
24 # Find the wolfSSL library
28 # - `WOLFSSL_INCLUDE_DIR`: The wolfSSL include directory.
29 # - `WOLFSSL_LIBRARY`: Path to `wolfssl` library.
33 # - `WOLFSSL_FOUND`: System has wolfSSL.
34 # - `WOLFSSL_INCLUDE_DIRS`: The wolfSSL include directories.
35 # - `WOLFSSL_LIBRARIES`: The wolfSSL library names.
36 # - `WOLFSSL_LIBRARY_DIRS`: The wolfSSL library directories.
37 # - `WOLFSSL_PC_REQUIRES`: The wolfSSL pkg-config packages.
38 # - `WOLFSSL_CFLAGS`: Required compiler flags.
39 # - `WOLFSSL_VERSION`: Version of wolfSSL.
50 set(WOLFSSL_PC_REQUIRES "wolfssl")
56 pkg_check_modules(WOLFSSL ${WOLFSSL_PC_REQUIRES})
61 …message(STATUS "Found WolfSSL (via pkg-config): ${WOLFSSL_INCLUDE_DIRS} (found version \"${WOLFSSL…
63 find_path(WOLFSSL_INCLUDE_DIR NAMES "wolfssl/ssl.h")
64 find_library(WOLFSSL_LIBRARY NAMES "wolfssl")
67 if(WOLFSSL_INCLUDE_DIR AND EXISTS "${WOLFSSL_INCLUDE_DIR}/wolfssl/version.h")
69 file(STRINGS "${WOLFSSL_INCLUDE_DIR}/wolfssl/version.h" _version_str REGEX "${_version_regex}")
77 find_package_handle_standard_args(WolfSSL