You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
cmake -DBUILD_SSL=YES ..
crypto_LIBRARY_STATIC
linked by target "restbed-static" in directory /srv/rest/restbed
ssl_LIBRARY_STATIC
linked by target "restbed-static" in directory /srv/rest/restbed
Fix (several instances in the file):
-- crypto_LIBRARY_STATIC
++ CRYPTO_LIBRARY_STATIC
-- ssl_LIBRARY_STATIC
++ SSL_LIBRARY_STATIC
The text was updated successfully, but these errors were encountered:
In the current master branch (4.8) there are typos in the CMakeList.txt:
Fix:
-- find_package( openssl REQUIRED )
++ find_package( OpenSSL REQUIRED )
When this is fixed there are a few other typos:
Fix (several instances in the file):
-- crypto_LIBRARY_STATIC
++ CRYPTO_LIBRARY_STATIC
-- ssl_LIBRARY_STATIC
++ SSL_LIBRARY_STATIC
The text was updated successfully, but these errors were encountered: