cmake: find libgcrypt include directory

This commit is contained in:
xiphon 2020-11-24 15:41:41 +00:00
parent 6fce5c7a84
commit 2d20bfd7ac

View file

@ -1,8 +1,10 @@
file(GLOB_RECURSE SOURCES *.cpp)
file(GLOB_RECURSE HEADERS *.h)
find_library(GCRYPT_LIBRARY gcrypt)
find_library(GPG_ERROR_LIBRARY gpg-error)
find_library(GCRYPT_LIBRARY gcrypt REQUIRED)
find_path(GCRYPT_INCLUDE_DIR gcrypt.h REQUIRED)
find_library(GPG_ERROR_LIBRARY gpg-error REQUIRED)
add_library(openpgp
${SOURCES}
@ -10,7 +12,8 @@ add_library(openpgp
target_include_directories(openpgp
PUBLIC
${CMAKE_SOURCE_DIR}/monero/contrib/epee/include)
${CMAKE_SOURCE_DIR}/monero/contrib/epee/include
${GCRYPT_INCLUDE_DIR})
target_link_libraries(openpgp
PUBLIC