How to add OpenSSL to the project link?
I have seen FingOpenSSL (cmake), but it’s not clear what to do about it. Please give an example of how to add OpenSSL to the project link.
Did you read the documentation ? All are elementary:
find_package(OpenSSL) add_executable(yourapp ...) target_link_libraries(yourapp ${OPENSSL_LIBRARIES}) OPENSSL_ROOT_DIR ? It should point to the directory that contains the lib and include list. - arrowdSource: https://ru.stackoverflow.com/questions/601624/
All Articles