mirror of
https://codeberg.org/anoncontributorxmr/monero.git
synced 2024-11-10 13:13:27 +01:00
Merge pull request #2263
49ffb156
cmake: do not use GREATER_EQUAL, it's too new (moneromooo-monero)
This commit is contained in:
commit
86226754a9
@ -48,7 +48,7 @@ IF(MINIUPNPC_FOUND)
|
|||||||
set(MINIUPNPC_API_VERSION "${CMAKE_MATCH_1}")
|
set(MINIUPNPC_API_VERSION "${CMAKE_MATCH_1}")
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
if (${MINIUPNPC_API_VERSION} GREATER_EQUAL "10")
|
if (${MINIUPNPC_API_VERSION} GREATER "10" OR ${MINIUPNPC_API_VERSION} EQUAL "10")
|
||||||
message(STATUS "Found miniupnpc API version " ${MINIUPNPC_API_VERSION})
|
message(STATUS "Found miniupnpc API version " ${MINIUPNPC_API_VERSION})
|
||||||
set(MINIUPNP_FOUND true)
|
set(MINIUPNP_FOUND true)
|
||||||
set(MINIUPNPC_VERSION_1_7_OR_HIGHER true)
|
set(MINIUPNPC_VERSION_1_7_OR_HIGHER true)
|
||||||
|
Loading…
Reference in New Issue
Block a user