From 9b879160df01e7ddbb4770904391d3b74114302b Mon Sep 17 00:00:00 2001 From: Michael Forney Date: Thu, 7 Nov 2019 20:17:18 -0800 Subject: TLS: add BearSSL vtls implementation Closes #4597 --- CMake/FindBearSSL.cmake | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 CMake/FindBearSSL.cmake (limited to 'CMake') diff --git a/CMake/FindBearSSL.cmake b/CMake/FindBearSSL.cmake new file mode 100644 index 000000000..20d239a4f --- /dev/null +++ b/CMake/FindBearSSL.cmake @@ -0,0 +1,9 @@ +find_path(BEARSSL_INCLUDE_DIRS bearssl.h) + +find_library(BEARSSL_LIBRARY bearssl) + +include(FindPackageHandleStandardArgs) +find_package_handle_standard_args(BEARSSL DEFAULT_MSG + BEARSSL_INCLUDE_DIRS BEARSSL_LIBRARY) + +mark_as_advanced(BEARSSL_INCLUDE_DIRS BEARSSL_LIBRARY) -- cgit v1.2.3