danicoin/external/CMakeLists.txt

15 lines
569 B
CMake
Raw Normal View History

2014-04-09 12:14:35 +00: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")
2015-05-27 12:08:46 +00:00
2014-04-09 12:14:35 +00:00
add_subdirectory(miniupnpc)
2015-05-27 12:08:46 +00:00
add_subdirectory(gtest)
set_property(TARGET upnpc-static gtest gtest_main PROPERTY FOLDER "external")
2014-04-09 12:14:35 +00:00
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()