Remove in-repo FindCrypto.cmake.

As of cmake 3.4, cmake has built-in support and the minimum is now 3.5.
This commit is contained in:
Pentarctagon 2021-05-13 14:18:47 -05:00
parent c560b0efab
commit b5ab344bc3
No known key found for this signature in database
GPG key ID: 9456BC54A21DBFA0

View file

@ -1,11 +0,0 @@
# OpenSSL crypto library
find_path(CRYPTO_INCLUDE_DIR openssl/md5.h)
find_library(CRYPTO_LIBRARY crypto)
# handle the QUIETLY and REQUIRED arguments and set XXX_FOUND to TRUE if all listed variables are TRUE
INCLUDE(FindPackageHandleStandardArgs)
FIND_PACKAGE_HANDLE_STANDARD_ARGS(Crypto DEFAULT_MSG CRYPTO_LIBRARY CRYPTO_INCLUDE_DIR)
mark_as_advanced(CRYPTO_INCLUDE_DIR CRYPTO_LIBRARY)