facf0c92e0
Red Bear OS is a full fork. All sources must be available from git clone with zero network access. Removed gitignore rules that excluded fetched source trees under recipes/*/source/, local/recipes/kde/*/source/, local/recipes/qt/*/source/, and vendor source trees. Build artifacts (target/, build/, source.tar, *.o, *.so) remain excluded. 127291 files added — kernel, relibc, base, bootloader, pkgar, all KDE/Qt frameworks, mesa, wayland, DRM drivers, and every other recipe source.
42 lines
1.3 KiB
CMake
42 lines
1.3 KiB
CMake
# - Try to find wolfssl
|
|
# Once done this will define
|
|
# WOLFSSL_FOUND - System has wolfssl
|
|
# WOLFSSL_INCLUDE_DIRS - The wolfssl include directories
|
|
# WOLFSSL_LIBRARIES - The libraries needed to use wolfssl
|
|
|
|
find_package(PkgConfig QUIET)
|
|
pkg_check_modules(PC_WOLFSSL QUIET wolfssl)
|
|
|
|
find_path(WOLFSSL_INCLUDE_DIR
|
|
NAMES wolfssl/ssl.h
|
|
HINTS ${PC_WOLFSSL_INCLUDE_DIRS}
|
|
)
|
|
find_library(WOLFSSL_LIBRARY
|
|
NAMES wolfssl
|
|
HINTS ${PC_WOLFSSL_LIBRARY_DIRS}
|
|
)
|
|
|
|
if(WOLFSSL_INCLUDE_DIR)
|
|
set(_version_regex "^#define[ \t]+LIBWOLFSSL_VERSION_STRING[ \t]+\"([^\"]+)\".*")
|
|
file(STRINGS "${WOLFSSL_INCLUDE_DIR}/wolfssl/version.h"
|
|
WOLFSSL_VERSION REGEX "${_version_regex}")
|
|
string(REGEX REPLACE "${_version_regex}" "\\1"
|
|
WOLFSSL_VERSION "${WOLFSSL_VERSION}")
|
|
unset(_version_regex)
|
|
endif()
|
|
|
|
include(FindPackageHandleStandardArgs)
|
|
# handle the QUIETLY and REQUIRED arguments and set WOLFSSL_FOUND
|
|
# to TRUE if all listed variables are TRUE and the requested version
|
|
# matches.
|
|
find_package_handle_standard_args(WolfSSL REQUIRED_VARS
|
|
WOLFSSL_LIBRARY WOLFSSL_INCLUDE_DIR
|
|
VERSION_VAR WOLFSSL_VERSION)
|
|
|
|
if(WOLFSSL_FOUND)
|
|
set(WOLFSSL_LIBRARIES ${WOLFSSL_LIBRARY})
|
|
set(WOLFSSL_INCLUDE_DIRS ${WOLFSSL_INCLUDE_DIR})
|
|
endif()
|
|
|
|
mark_as_advanced(WOLFSSL_INCLUDE_DIR WOLFSSL_LIBRARY)
|