mirror of
https://github.com/feather-wallet/feather.git
synced 2025-03-22 06:58:43 +00:00
20 lines
440 B
CMake
20 lines
440 B
CMake
file(GLOB_RECURSE SOURCES *.cpp)
|
|
file(GLOB_RECURSE HEADERS *.h)
|
|
|
|
find_library(GCRYPT_LIBRARY gcrypt)
|
|
find_library(GPG_ERROR_LIBRARY gpg-error)
|
|
|
|
add_library(openpgp
|
|
${SOURCES}
|
|
${HEADERS})
|
|
|
|
find_package(GCrypt)
|
|
target_include_directories(openpgp PUBLIC
|
|
${CMAKE_SOURCE_DIR}/monero/contrib/epee/include
|
|
${GCRYPT_INCLUDE_DIRS}
|
|
)
|
|
|
|
target_link_libraries(openpgp
|
|
PUBLIC
|
|
${GCRYPT_LIBRARY}
|
|
${GPG_ERROR_LIBRARY})
|