mirror of
https://github.com/monero-project/monero.git
synced 2025-12-24 03:58:23 -08:00
fixed unbound static lib on mingw as libunbound.dll.a
This commit is contained in:
@@ -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()
|
||||||
|
|||||||
Reference in New Issue
Block a user