summaryrefslogtreecommitdiff
path: root/src/bin
diff options
context:
space:
mode:
authorEven Rouault <even.rouault@mines-paris.org>2017-11-14 12:28:44 +0100
committerGitHub <noreply@github.com>2017-11-14 12:28:44 +0100
commit370d024d108ffe2d5ce9b52f6b7fae5261c4871d (patch)
tree1d33513815703e131212f4469964a1571759096a /src/bin
parentd9f8f7ba9a51732eda9017cea6493cc86a62c7ef (diff)
parent157a3d840884abe5020b1a8b94576a7447063385 (diff)
Merge pull request #1042 from radarhere/cmake
Changed cmake version test to allow for cmake 2.8.11.x
Diffstat (limited to 'src/bin')
-rw-r--r--src/bin/jp2/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/jp2/CMakeLists.txt b/src/bin/jp2/CMakeLists.txt
index 4324c36d..4d4bd952 100644
--- a/src/bin/jp2/CMakeLists.txt
+++ b/src/bin/jp2/CMakeLists.txt
@@ -44,7 +44,7 @@ endif()
# Loop over all executables:
foreach(exe opj_decompress opj_compress opj_dump)
add_executable(${exe} ${exe}.c ${common_SRCS})
- if(${CMAKE_VERSION} VERSION_GREATER "2.8.11")
+ if(NOT ${CMAKE_VERSION} VERSION_LESS "2.8.12")
target_compile_options(${exe} PRIVATE ${OPENJP2_COMPILE_OPTIONS})
endif()
target_link_libraries(${exe} ${OPENJPEG_LIBRARY_NAME}