From 88b0fb14c8573e9445b6d622b1102603d8a00237 Mon Sep 17 00:00:00 2001 From: Riccardo Spagni Date: Thu, 31 Dec 2015 15:15:57 +0200 Subject: [PATCH] let miniupnp's cmakelist handle defaults --- external/CMakeLists.txt | 3 --- external/miniupnpc/CMakeLists.txt | 2 +- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/external/CMakeLists.txt b/external/CMakeLists.txt index eb6a1f294..d13f67b90 100644 --- a/external/CMakeLists.txt +++ b/external/CMakeLists.txt @@ -60,9 +60,6 @@ else() message(STATUS "Using miniupnpc from local source tree (/external/miniupnpc)") endif() - 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") diff --git a/external/miniupnpc/CMakeLists.txt b/external/miniupnpc/CMakeLists.txt index 33fa8d663..51331ecb5 100644 --- a/external/miniupnpc/CMakeLists.txt +++ b/external/miniupnpc/CMakeLists.txt @@ -18,7 +18,7 @@ endif() ]] option (UPNPC_BUILD_STATIC "Build static library" TRUE) -option (UPNPC_BUILD_SHARED "Build shared library" TRUE) +option (UPNPC_BUILD_SHARED "Build shared library" FALSE) if (NOT WIN32) option (UPNPC_BUILD_TESTS "Build test executables" FALSE) endif (NOT WIN32)