mirror of
https://codeberg.org/anoncontributorxmr/monero.git
synced 2024-11-23 11:23:26 +01:00
fixed unbound static lib on mingw as libunbound.dll.a
This commit is contained in:
parent
bba217a2a6
commit
6b9a7fcd67
@ -38,7 +38,11 @@ FIND_PATH(UNBOUND_INCLUDE_DIR
|
|||||||
)
|
)
|
||||||
|
|
||||||
if(STATIC)
|
if(STATIC)
|
||||||
find_library(UNBOUND_LIBRARIES libunbound.a)
|
if(MINGW)
|
||||||
|
find_library(UNBOUND_LIBRARIES libunbound.dll.a)
|
||||||
|
else()
|
||||||
|
find_library(UNBOUND_LIBRARIES libunbound.a)
|
||||||
|
endif()
|
||||||
else()
|
else()
|
||||||
find_library(UNBOUND_LIBRARIES unbound)
|
find_library(UNBOUND_LIBRARIES unbound)
|
||||||
endif()
|
endif()
|
||||||
|
Loading…
Reference in New Issue
Block a user