mirror of
https://github.com/moparisthebest/curl
synced 2024-11-11 12:05:06 -05:00
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)
|