mirror of
https://git.wownero.com/wownero/onion-wownero-blockchain-explorer.git
synced 2024-08-15 00:33:12 +00:00
add changes from pr #76
https://github.com/moneroexamples/onion-monero-blockchain-explorer/pull/76/commits/4983786ed546002ccea81ae35afd496a2d698cb9
This commit is contained in:
parent
513b59004f
commit
b3d8279af3
5 changed files with 37 additions and 22 deletions
|
@ -62,7 +62,7 @@ endif()
|
|||
|
||||
if (${CMAKE_SYSTEM_NAME} MATCHES "Darwin" OR WIN32)
|
||||
add_library(unbound STATIC IMPORTED)
|
||||
set_property(TARGET unbound PROPERTY IMPORTED_LOCATION ${MONERO_LIBS_DIR}/libunbound.a)
|
||||
set_property(TARGET unbound PROPERTY IMPORTED_LOCATION ${MONERO_BUILD_DIR}/external/unbound/libunbound.a)
|
||||
endif()
|
||||
|
||||
# include boost headers
|
||||
|
@ -113,9 +113,15 @@ set(LIBRARIES
|
|||
unbound
|
||||
curl
|
||||
crypto
|
||||
atomic
|
||||
ssl)
|
||||
|
||||
|
||||
if(APPLE)
|
||||
set(LIBRARIES ${LIBRARIES} "-framework IOKit")
|
||||
else()
|
||||
set(LIBRARIES ${LIBRARIES} atomic)
|
||||
endif()
|
||||
|
||||
if (NOT ${CMAKE_SYSTEM_NAME} MATCHES "Darwin" AND NOT WIN32)
|
||||
set(LIBRARIES ${LIBRARIES} unwind)
|
||||
endif()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue