forked from lthn/blockchain
Resolves the following implemented client vulnerabilities: https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2015-6031 https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2017-8798 There are other client fixes as well and I would advise to semi-regularly bump to master because of the lead developer's release habits. In the meantime, version 2.1 should be good enough for now. Note: the adding of TTL argument to upnpDiscover came with the API_VERSION 14.
21 lines
719 B
CMake
21 lines
719 B
CMake
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(miniupnp/miniupnpc)
|
|
add_subdirectory(zlib)
|
|
add_subdirectory(db)
|
|
add_subdirectory(ethereum)
|
|
|
|
|
|
set_property(TARGET upnpc-static PROPERTY FOLDER "contrib/miniupnp")
|
|
set_property(TARGET zlibstatic PROPERTY FOLDER "contrib")
|
|
set_property(TARGET lmdb PROPERTY FOLDER "contrib")
|
|
|
|
|
|
|
|
|
|
if(MSVC)
|
|
set_property(TARGET upnpc-static APPEND_STRING PROPERTY COMPILE_FLAGS " -wd4244 -wd4267")
|
|
else()
|
|
set_property(TARGET upnpc-static APPEND_STRING PROPERTY COMPILE_FLAGS " -Wno-undef -Wno-unused-result -Wno-unused-value")
|
|
endif()
|