First commit

This commit is contained in:
2025-02-26 13:42:34 +01:00
commit f465c9072c
2467 changed files with 426214 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
# Locate Crypto++ library
# This module defines
# Crypto++_FOUND
# Crypto++_INCLUDE_DIR
# Crypto++_LIBRARIES
find_path(Crypto++_INCLUDE_DIR NAMES cryptopp/cryptlib.h)
find_library(Crypto++_LIBRARIES NAMES cryptopp libcryptopp)
include(FindPackageHandleStandardArgs)
FIND_PACKAGE_HANDLE_STANDARD_ARGS(Crypto++ DEFAULT_MSG Crypto++_INCLUDE_DIR Crypto++_LIBRARIES)
mark_as_advanced(Crypto++_INCLUDE_DIR Crypto++_LIBRARIES)