cmake: fix up miniupnpc's define

It's only necessary on Windows builds and new versions renamed the
define without any compatibility bridge.
This commit is contained in:
Ben Boeckel 2014-10-23 16:34:42 -04:00
parent 9689df925c
commit 464c2805e5
2 changed files with 10 additions and 6 deletions

View file

@ -28,9 +28,11 @@
#
# Parts of this file are originally copyright (c) 2012-2013 The Cryptonote developers
add_definitions(-DSTATICLIB)
# miniupnp changed their static define
add_definitions(-DMINIUPNP_STATICLIB)
if (WIN32 AND STATIC)
add_definitions(-DSTATICLIB)
# miniupnp changed their static define
add_definitions(-DMINIUPNP_STATICLIB)
endif ()
function (bitmonero_private_headers group)
source_group("${group}\\Private"

View file

@ -28,9 +28,11 @@
#
# Parts of this file are originally copyright (c) 2012-2013 The Cryptonote developers
add_definitions(-DSTATICLIB)
# miniupnp changed their static define
add_definitions(-DMINIUPNP_STATICLIB)
if (WIN32 AND STATIC)
add_definitions(-DSTATICLIB)
# miniupnp changed their static define
add_definitions(-DMINIUPNP_STATICLIB)
endif ()
find_package(GTest)