linux server in production now online

This commit is contained in:
ErikasKontenis
2020-01-05 19:33:21 +02:00
parent b147aa2590
commit 5260e41d84
8 changed files with 66 additions and 20 deletions

13
cmake/FindCrypto++.cmake Normal file
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)