diff options
author | Brad King <brad.king@kitware.com> | 2008-01-21 13:48:33 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2008-01-21 13:48:33 (GMT) |
commit | f41b1e8e9148c62e186e0729c5a5144c51e944e9 (patch) | |
tree | 4c0b4a7d6829a94e2248e6fe583279f906317c3f /Tests/FindPackageTest/FindVersionTestB.cmake | |
parent | 9198a92af9e9f05a90d544c76ffeb65aa1a5281e (diff) | |
download | CMake-f41b1e8e9148c62e186e0729c5a5144c51e944e9.zip CMake-f41b1e8e9148c62e186e0729c5a5144c51e944e9.tar.gz CMake-f41b1e8e9148c62e186e0729c5a5144c51e944e9.tar.bz2 |
ENH: Implement version support in the find_package command module mode. Version numbers provided to the command are converted to variable settings to tell the FindXXX.cmake module what version is requested. This addresses issue #1645.
Diffstat (limited to 'Tests/FindPackageTest/FindVersionTestB.cmake')
-rw-r--r-- | Tests/FindPackageTest/FindVersionTestB.cmake | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Tests/FindPackageTest/FindVersionTestB.cmake b/Tests/FindPackageTest/FindVersionTestB.cmake new file mode 100644 index 0000000..787d200 --- /dev/null +++ b/Tests/FindPackageTest/FindVersionTestB.cmake @@ -0,0 +1,12 @@ +IF(NOT "${VersionTestB_FIND_VERSION}" STREQUAL "1.2") + MESSAGE(SEND_ERROR "VersionTestB_FIND_VERSION=${VersionTestB_FIND_VERSION} is not 1.2") +ENDIF(NOT "${VersionTestB_FIND_VERSION}" STREQUAL "1.2") +IF(NOT "${VersionTestB_FIND_VERSION_MAJOR}" STREQUAL "1") + MESSAGE(SEND_ERROR "VersionTestB_FIND_VERSION_MAJOR=${VersionTestB_FIND_VERSION_MAJOR} is not 1") +ENDIF(NOT "${VersionTestB_FIND_VERSION_MAJOR}" STREQUAL "1") +IF(NOT "${VersionTestB_FIND_VERSION_MINOR}" STREQUAL "2") + MESSAGE(SEND_ERROR "VersionTestB_FIND_VERSION_MINOR=${VersionTestB_FIND_VERSION_MINOR} is not 2") +ENDIF(NOT "${VersionTestB_FIND_VERSION_MINOR}" STREQUAL "2") +IF(DEFINED VersionTestB_FIND_VERSION_PATCH) + MESSAGE(SEND_ERROR "VersionTestB_FIND_VERSION_PATCH should not be defined") +ENDIF(DEFINED VersionTestB_FIND_VERSION_PATCH) |