mirror of
https://github.com/moparisthebest/curl
synced 2024-11-05 09:05:04 -05:00
9b879160df
Closes #4597
10 lines
273 B
CMake
10 lines
273 B
CMake
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)
|