2014-09-10 18:14:57 +02:00
|
|
|
if(NOT ${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
|
|
|
|
include(FindMiniupnpc)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(MINIUPNP_FOUND AND MINIUPNPC_VERSION_1_7_OR_HIGHER)
|
|
|
|
message(STATUS "Using shared miniupnpc")
|
|
|
|
include_directories(${MINIUPNP_INCLUDE_DIR})
|
|
|
|
set(UPNP_LIBRARIES "miniupnpc")
|
|
|
|
else()
|
|
|
|
message(STATUS "Using static miniupnpc from external")
|
|
|
|
add_subdirectory(miniupnpc)
|
|
|
|
|
2014-09-09 14:03:42 +02:00
|
|
|
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")
|
2014-04-09 14:14:35 +02:00
|
|
|
|
2014-09-09 14:03:42 +02:00
|
|
|
set_property(TARGET upnpc-static PROPERTY FOLDER "external")
|
|
|
|
if(MSVC)
|
|
|
|
set_property(TARGET upnpc-static APPEND_STRING PROPERTY COMPILE_FLAGS " -wd4244 -wd4267")
|
|
|
|
elseif(NOT MSVC)
|
|
|
|
set_property(TARGET upnpc-static APPEND_STRING PROPERTY COMPILE_FLAGS " -Wno-undef -Wno-unused-result -Wno-unused-value")
|
|
|
|
endif()
|
2014-09-10 18:14:57 +02:00
|
|
|
|
|
|
|
set(UPNP_LIBRARIES "upnpc-static")
|
|
|
|
endif()
|