diff options
author | Slávek Banko <[email protected]> | 2017-12-26 19:05:23 +0100 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2017-12-26 19:05:23 +0100 |
commit | b73c1141318bcf0c3bd2f06cfabc0d82dd534d9c (patch) | |
tree | c83d20c44d3a7ff413482108addc550e1d950403 /tdefile-plugins/dependencies | |
parent | 9dd187337acce50e168b06571dfa315c41a1b628 (diff) | |
download | tdegraphics-b73c1141318bcf0c3bd2f06cfabc0d82dd534d9c.tar.gz tdegraphics-b73c1141318bcf0c3bd2f06cfabc0d82dd534d9c.zip |
Fix FTBFS with CMake < 3.0
Signed-off-by: Slávek Banko <[email protected]>
Diffstat (limited to 'tdefile-plugins/dependencies')
-rw-r--r-- | tdefile-plugins/dependencies/poppler-tqt/ConfigureChecks.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tdefile-plugins/dependencies/poppler-tqt/ConfigureChecks.cmake b/tdefile-plugins/dependencies/poppler-tqt/ConfigureChecks.cmake index 725a19c6..de1426a0 100644 --- a/tdefile-plugins/dependencies/poppler-tqt/ConfigureChecks.cmake +++ b/tdefile-plugins/dependencies/poppler-tqt/ConfigureChecks.cmake @@ -26,7 +26,7 @@ tde_restore( CMAKE_REQUIRED_INCLUDES CMAKE_REQUIRED_LIBRARIES ) if( NOT DEFINED HAVE_POPPLER_060 ) message( STATUS "Performing Test HAVE_POPPLER_060" ) - if( POPPLER_VERSION VERSION_GREATER_EQUAL "0.60" ) + if( NOT POPPLER_VERSION VERSION_LESS "0.60" ) set( HAVE_POPPLER_060 1 CACHE INTERNAL "" FORCE ) message( STATUS "Performing Test HAVE_POPPLER_060 - Success" ) else( ) |