Merge pull request #3244

2d20bfd7 cmake: find libgcrypt include directory (xiphon)
This commit is contained in:
Alexander Blair 2020-11-24 11:36:29 -08:00
commit d5365298d2
No known key found for this signature in database
GPG key ID: C64552D877C32479

View file

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