python/CMakeLists.txt: fix build with cmake < 3.7
authorFabrice Fontaine <fontaine.fabrice@gmail.com>
Sat, 19 Jan 2019 20:42:01 +0000 (21:42 +0100)
committerThomas Jarosch <thomas.jarosch@intra2net.com>
Mon, 21 Jan 2019 15:14:42 +0000 (16:14 +0100)
commit921059828c9a3a1d8f773ce5adb2afc4542f9622
tree4f976ac41290a24d61d63a608a29323b535a27db
parent280bea1940219c74688527e18118956112b08391
python/CMakeLists.txt: fix build with cmake < 3.7

VERSION_GREATER_EQUAL has been added only in cmake 3.7:
https://cmake.org/cmake/help/v3.7/release/3.7.html

So replace this statement by NOT CMAKE_VERSION VERSION_LESS

Fixes:
 - http://autobuild.buildroot.org/results/1091872e2b77d789e361d1ddefd235c738933c55

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
python/CMakeLists.txt