Skip to content

Commit

Permalink
Basis{Importer,ImageConverter}: don't use VERSION_GREATER_EQUAL
Browse files Browse the repository at this point in the history
it requires CMake 3.7
  • Loading branch information
pezcode committed Oct 25, 2021
1 parent a5aca85 commit 4597fb1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/FindBasisUniversal.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ endif()
# Emscripten, but WebAssembly is always little-endian. On CMake 3.8 and below,
# test_big_endian() requires C support which breaks compilation in funny ways
# (see comment below) so we skip that.
if(NOT CORRADE_TARGET_EMSCRIPTEN AND CMAKE_VERSION VERSION_GREATER_EQUAL 3.9)
if(NOT CORRADE_TARGET_EMSCRIPTEN AND NOT CMAKE_VERSION VERSION_LESS 3.9)
include(TestBigEndian)
test_big_endian(BIG_ENDIAN)
endif()
Expand Down

0 comments on commit 4597fb1

Please sign in to comment.