diff options
| author | Czarek Nakamoto <cyjan@mrcyjanek.net> | 2024-01-05 14:47:40 +0100 |
|---|---|---|
| committer | Czarek Nakamoto <cyjan@mrcyjanek.net> | 2024-01-05 14:47:40 +0100 |
| commit | 9511e3bb3098f53fc17b932241813fca68565cc0 (patch) | |
| tree | 616c2f4320136a7fcc525a76f013ba92b3ae72fa /libbridge | |
| parent | bf0f5200b1d606318e8fdb6018b07c6af04ba85e (diff) | |
link agains utf8proc and libpolyseed_wrapper.a
Diffstat (limited to 'libbridge')
| -rw-r--r-- | libbridge/CMakeLists.txt | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/libbridge/CMakeLists.txt b/libbridge/CMakeLists.txt index b476bfa..23e1f5e 100644 --- a/libbridge/CMakeLists.txt +++ b/libbridge/CMakeLists.txt @@ -79,6 +79,18 @@ add_library(polyseed STATIC IMPORTED) set_target_properties(polyseed PROPERTIES IMPORTED_LOCATION ${EXTERNAL_LIBS_DIR}/prefix/lib/libpolyseed.a) +add_library(polyseed-wrapper STATIC IMPORTED) +set_target_properties(polyseed-wrapper PROPERTIES IMPORTED_LOCATION + ${EXTERNAL_LIBS_DIR}/monero/build/release/src/polyseed/libpolyseed_wrapper.a) + +############# +# Utf8proc +############# + +add_library(utf8proc STATIC IMPORTED) +set_target_properties(utf8proc PROPERTIES IMPORTED_LOCATION + ${EXTERNAL_LIBS_DIR}/prefix/lib/libutf8proc.a) + ############# # Monero ############# @@ -246,6 +258,8 @@ target_link_libraries( wallet2_api_c boost_wserialization polyseed + polyseed-wrapper + utf8proc ssl crypto |
