mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
more dynamic miniupnp fixes
This commit is contained in:
parent
59c0423eae
commit
8d8b47e69f
3 changed files with 19 additions and 7 deletions
7
external/CMakeLists.txt
vendored
7
external/CMakeLists.txt
vendored
|
@ -3,16 +3,15 @@ if(NOT ${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
|
|||
endif()
|
||||
|
||||
if(MINIUPNP_FOUND AND MINIUPNPC_VERSION_1_7_OR_HIGHER)
|
||||
message(STATUS "Using shared miniupnpc")
|
||||
message(STATUS "Using shared miniupnpc found at ${MINIUPNP_INCLUDE_DIR}")
|
||||
include_directories(${MINIUPNP_INCLUDE_DIR})
|
||||
set(UPNP_LIBRARIES "miniupnpc")
|
||||
else()
|
||||
message(STATUS "Using static miniupnpc from external")
|
||||
add_subdirectory(miniupnpc)
|
||||
|
||||
set(UPNPC_BUILD_STATIC ON CACHE BOOL "Build static library")
|
||||
set(UPNPC_BUILD_SHARED OFF CACHE BOOL "Build shared library")
|
||||
set(UPNPC_BUILD_TESTS OFF CACHE BOOL "Build test executables")
|
||||
add_subdirectory(miniupnpc)
|
||||
|
||||
set_property(TARGET upnpc-static PROPERTY FOLDER "external")
|
||||
if(MSVC)
|
||||
|
@ -20,6 +19,4 @@ else()
|
|||
elseif(NOT MSVC)
|
||||
set_property(TARGET upnpc-static APPEND_STRING PROPERTY COMPILE_FLAGS " -Wno-undef -Wno-unused-result -Wno-unused-value")
|
||||
endif()
|
||||
|
||||
set(UPNP_LIBRARIES "upnpc-static")
|
||||
endif()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue