diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2017-08-07 21:37:13 +0100 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2017-08-07 21:37:13 +0100 |
commit | 49ffb156f0c21f5d4a06ed9cb3f6ee3a39926dfd (patch) | |
tree | 56e36713b569473633e69610431b01a896409e93 /cmake | |
parent | Merge pull request #2225 (diff) | |
download | monero-49ffb156f0c21f5d4a06ed9cb3f6ee3a39926dfd.tar.xz |
cmake: do not use GREATER_EQUAL, it's too new
Diffstat (limited to 'cmake')
-rw-r--r-- | cmake/FindMiniupnpc.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmake/FindMiniupnpc.cmake b/cmake/FindMiniupnpc.cmake index 9fad295e8..77675db48 100644 --- a/cmake/FindMiniupnpc.cmake +++ b/cmake/FindMiniupnpc.cmake @@ -48,7 +48,7 @@ IF(MINIUPNPC_FOUND) set(MINIUPNPC_API_VERSION "${CMAKE_MATCH_1}") 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}) set(MINIUPNP_FOUND true) set(MINIUPNPC_VERSION_1_7_OR_HIGHER true) |