23 lines
876 B
CMake
Executable File
23 lines
876 B
CMake
Executable File
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 found at ${MINIUPNP_INCLUDE_DIR}")
|
|
include_directories(${MINIUPNP_INCLUDE_DIR})
|
|
else()
|
|
message(STATUS "Using static miniupnpc from external")
|
|
|
|
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)
|
|
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()
|
|
endif()
|