mirror of
https://git.wownero.com/wownero/onion-wownero-blockchain-explorer.git
synced 2024-08-15 00:33:12 +00:00
Specify libunbound.a only for mac or win.
Linux has its own.
This commit is contained in:
parent
af9b290458
commit
51db26e717
1 changed files with 4 additions and 2 deletions
|
@ -93,8 +93,10 @@ add_library(wallet STATIC IMPORTED)
|
||||||
set_property(TARGET wallet
|
set_property(TARGET wallet
|
||||||
PROPERTY IMPORTED_LOCATION ${MONERO_LIBS_DIR}/libwallet.a)
|
PROPERTY IMPORTED_LOCATION ${MONERO_LIBS_DIR}/libwallet.a)
|
||||||
|
|
||||||
add_library(unbound STATIC IMPORTED)
|
if (${CMAKE_SYSTEM_NAME} MATCHES "Darwin" OR WIN32)
|
||||||
set_property(TARGET unbound PROPERTY IMPORTED_LOCATION ${MONERO_LIBS_DIR}/libunbound.a)
|
add_library(unbound STATIC IMPORTED)
|
||||||
|
set_property(TARGET unbound PROPERTY IMPORTED_LOCATION ${MONERO_LIBS_DIR}/libunbound.a)
|
||||||
|
endif()
|
||||||
|
|
||||||
# include boost headers
|
# include boost headers
|
||||||
include_directories(${Boost_INCLUDE_DIRS})
|
include_directories(${Boost_INCLUDE_DIRS})
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue