mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-12-23 08:08:53 +00:00
fixed unbound static lib on mingw as libunbound.dll.a
This commit is contained in:
parent
8c37823d45
commit
9130e411e1
@ -38,7 +38,11 @@ FIND_PATH(UNBOUND_INCLUDE_DIR
|
|||||||
)
|
)
|
||||||
|
|
||||||
if(STATIC)
|
if(STATIC)
|
||||||
|
if(MINGW)
|
||||||
|
find_library(UNBOUND_LIBRARIES libunbound.dll.a)
|
||||||
|
else()
|
||||||
find_library(UNBOUND_LIBRARIES libunbound.a)
|
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