openssl
- registry: kmpkgcore
- type: kumo system both static and shared library.
install
kmpkg install openssl
add port
add to project dependency list:
kmpkg add port openssl
kmpkg
kmpkg.json
{
"dependencies": [
"openssl"
]
}
cmake find and link
find openssl package:
find
find_package(OpenSSL REQUIRED)
link openssl static:
${OPENSSL_SSL_LIBRARY}
${OPENSSL_CRYPTO_LIBRARY}