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/FindVersionTestA.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/FindVersionTestA.cmake')
-rw-r--r-- | Tests/FindPackageTest/FindVersionTestA.cmake | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Tests/FindPackageTest/FindVersionTestA.cmake b/Tests/FindPackageTest/FindVersionTestA.cmake new file mode 100644 index 0000000..eedf371 --- /dev/null +++ b/Tests/FindPackageTest/FindVersionTestA.cmake @@ -0,0 +1,12 @@ +IF(NOT "${VersionTestA_FIND_VERSION}" STREQUAL "1") + MESSAGE(SEND_ERROR "VersionTestA_FIND_VERSION=${VersionTestA_FIND_VERSION} is not 1") +ENDIF(NOT "${VersionTestA_FIND_VERSION}" STREQUAL "1") +IF(NOT "${VersionTestA_FIND_VERSION_MAJOR}" STREQUAL "1") + MESSAGE(SEND_ERROR "VersionTestA_FIND_VERSION_MAJOR=${VersionTestA_FIND_VERSION_MAJOR} is not 1") +ENDIF(NOT "${VersionTestA_FIND_VERSION_MAJOR}" STREQUAL "1") +IF(DEFINED VersionTestA_FIND_VERSION_MINOR) + MESSAGE(SEND_ERROR "VersionTestA_FIND_VERSION_MINOR should not be defined") +ENDIF(DEFINED VersionTestA_FIND_VERSION_MINOR) +IF(DEFINED VersionTestA_FIND_VERSION_PATCH) + MESSAGE(SEND_ERROR "VersionTestA_FIND_VERSION_PATCH should not be defined") +ENDIF(DEFINED VersionTestA_FIND_VERSION_PATCH) |