diff options
Diffstat (limited to 'modules')
-rw-r--r-- | modules/FindSoprano.cmake | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/FindSoprano.cmake b/modules/FindSoprano.cmake index 197be2c5..ca389f9c 100644 --- a/modules/FindSoprano.cmake +++ b/modules/FindSoprano.cmake @@ -79,10 +79,10 @@ STRING(REGEX MATCH "SOPRANO_VERSION_STRING \".*\"\n" SOPRANO_VERSION_MATCH ${SOPRANO_VERSION_CONTENT}) IF (SOPRANO_VERSION_MATCH) STRING(REGEX REPLACE "SOPRANO_VERSION_STRING \"(.*)\"\n" "\\1" SOPRANO_VERSION ${SOPRANO_VERSION_MATCH}) - if(SOPRANO_VERSION STRLESS "1.97.1") + if(SOPRANO_VERSION STRLESS "1.99") set(Soprano_FOUND FALSE) - message(FATAL_ERROR "Soprano version ${SOPRANO_VERSION} is too old. Please install 1.97.1 or newer") - endif(SOPRANO_VERSION STRLESS "1.97.1") + message(FATAL_ERROR "Soprano version ${SOPRANO_VERSION} is too old. Please install 1.99 or newer") + endif(SOPRANO_VERSION STRLESS "1.99") ENDIF (SOPRANO_VERSION_MATCH) endif(Soprano_FOUND) |