diff options
author | Alex Neundorf <neundorf@kde.org> | 2011-08-05 20:42:57 (GMT) |
---|---|---|
committer | Alex Neundorf <neundorf@kde.org> | 2011-08-05 20:42:57 (GMT) |
commit | 208bb9009bda2b41eeee747c34e536f561df8a59 (patch) | |
tree | ea1e72884806f7b0b76089fa865e92e3ece03e0c /Modules/BasicConfigVersion-AnyNewerVersion.cmake.in | |
parent | bb03c2dd3a9afafd6c24ea12e16edf4f9189813f (diff) | |
download | CMake-208bb9009bda2b41eeee747c34e536f561df8a59.zip CMake-208bb9009bda2b41eeee747c34e536f561df8a59.tar.gz CMake-208bb9009bda2b41eeee747c34e536f561df8a59.tar.bz2 |
Set UNSUITABLE instead of not COMPATIBLE
Alex
Diffstat (limited to 'Modules/BasicConfigVersion-AnyNewerVersion.cmake.in')
-rw-r--r-- | Modules/BasicConfigVersion-AnyNewerVersion.cmake.in | 24 |
1 files changed, 10 insertions, 14 deletions
diff --git a/Modules/BasicConfigVersion-AnyNewerVersion.cmake.in b/Modules/BasicConfigVersion-AnyNewerVersion.cmake.in index 30749c4..469bcdb 100644 --- a/Modules/BasicConfigVersion-AnyNewerVersion.cmake.in +++ b/Modules/BasicConfigVersion-AnyNewerVersion.cmake.in @@ -10,22 +10,18 @@ set(PACKAGE_VERSION "@CVF_VERSION@") -set(PACKAGE_VERSION_EXACT FALSE) # initialize to FALSE +if("${PACKAGE_VERSION}" VERSION_LESS "${PACKAGE_FIND_VERSION}" ) + set(PACKAGE_VERSION_COMPATIBLE FALSE) +else() + set(PACKAGE_VERSION_COMPATIBLE TRUE) + if( "${PACKAGE_FIND_VERSION}" STREQUAL "${PACKAGE_VERSION}") + set(PACKAGE_VERSION_EXACT TRUE) + endif() +endif() # check that the installed version has the same 32/64bit-ness as the one which is currently searching: if(NOT "${CMAKE_SIZEOF_VOID_P}" STREQUAL "@CMAKE_SIZEOF_VOID_P@") math(EXPR installedBits "@CMAKE_SIZEOF_VOID_P@ * 8") set(PACKAGE_VERSION "${PACKAGE_VERSION} (${installedBits}bit)") - set(PACKAGE_VERSION_COMPATIBLE FALSE) -else() - - if("${PACKAGE_VERSION}" VERSION_LESS "${PACKAGE_FIND_VERSION}" ) - set(PACKAGE_VERSION_COMPATIBLE FALSE) - else() - set(PACKAGE_VERSION_COMPATIBLE TRUE) - if( "${PACKAGE_FIND_VERSION}" STREQUAL "${PACKAGE_VERSION}") - set(PACKAGE_VERSION_EXACT TRUE) - endif() - endif() - -endif()
\ No newline at end of file + set(PACKAGE_VERSION_UNSUITABLE TRUE) +endif() |