- cmake now dynamically detects some versions of miniupnpc

This commit is contained in:
Mark Vejvoda 2012-06-05 22:25:46 +00:00
parent d0d432f204
commit f78f6bba9b

View File

@ -205,11 +205,16 @@ IF(BUILD_MEGAGLEST_MODEL_VIEWER OR BUILD_MEGAGLEST_MAP_EDITOR OR BUILD_MEGAGLEST
ENDIF(USE_FTGL) ENDIF(USE_FTGL)
IF(MINIUPNPC_VERSION_PRE1_5) IF(MINIUPNPC_VERSION_PRE1_5)
ADD_DEFINITIONS(-DMINIUPNPC_VERSION_PRE1_5) ADD_DEFINITIONS(-DMINIUPNPC_VERSION_PRE1_5)
message(STATUS "Adding macro for miniupnpc version: pre v1.5")
ENDIF() ENDIF()
IF(MINIUPNPC_VERSION_PRE1_6) IF(MINIUPNPC_VERSION_PRE1_6)
ADD_DEFINITIONS(-DMINIUPNPC_VERSION_PRE1_6) ADD_DEFINITIONS(-DMINIUPNPC_VERSION_PRE1_6)
message(STATUS "Adding macro for miniupnpc version: pre v1.6")
ENDIF() ENDIF()
IF(NOT MINIUPNPC_VERSION_PRE1_5 AND NOT MINIUPNPC_VERSION_PRE1_6)
message(STATUS "**No macro's required for miniupnpc version")
ENDIF()
OPTION(USE_FREETYPEGL "Use Freetype-GL for on-screen fonts" OFF) OPTION(USE_FREETYPEGL "Use Freetype-GL for on-screen fonts" OFF)
if(USE_FREETYPEGL) if(USE_FREETYPEGL)