summaryrefslogtreecommitdiffstats
path: root/Tests/FindPackageTest/FindVersionTestC.cmake
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2008-01-21 13:48:33 (GMT)
committerBrad King <brad.king@kitware.com>2008-01-21 13:48:33 (GMT)
commitf41b1e8e9148c62e186e0729c5a5144c51e944e9 (patch)
tree4c0b4a7d6829a94e2248e6fe583279f906317c3f /Tests/FindPackageTest/FindVersionTestC.cmake
parent9198a92af9e9f05a90d544c76ffeb65aa1a5281e (diff)
downloadCMake-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/FindVersionTestC.cmake')
-rw-r--r--Tests/FindPackageTest/FindVersionTestC.cmake12
1 files changed, 12 insertions, 0 deletions
diff --git a/Tests/FindPackageTest/FindVersionTestC.cmake b/Tests/FindPackageTest/FindVersionTestC.cmake
new file mode 100644
index 0000000..26ce050
--- /dev/null
+++ b/Tests/FindPackageTest/FindVersionTestC.cmake
@@ -0,0 +1,12 @@
+IF(NOT "${VersionTestC_FIND_VERSION}" STREQUAL "1.2.3")
+ MESSAGE(SEND_ERROR "VersionTestC_FIND_VERSION=${VersionTestC_FIND_VERSION} is not 1.2.3")
+ENDIF(NOT "${VersionTestC_FIND_VERSION}" STREQUAL "1.2.3")
+IF(NOT "${VersionTestC_FIND_VERSION_MAJOR}" STREQUAL "1")
+ MESSAGE(SEND_ERROR "VersionTestC_FIND_VERSION_MAJOR=${VersionTestC_FIND_VERSION_MAJOR} is not 1")
+ENDIF(NOT "${VersionTestC_FIND_VERSION_MAJOR}" STREQUAL "1")
+IF(NOT "${VersionTestC_FIND_VERSION_MINOR}" STREQUAL "2")
+ MESSAGE(SEND_ERROR "VersionTestC_FIND_VERSION_MINOR=${VersionTestC_FIND_VERSION_MINOR} is not 2")
+ENDIF(NOT "${VersionTestC_FIND_VERSION_MINOR}" STREQUAL "2")
+IF(NOT "${VersionTestC_FIND_VERSION_PATCH}" STREQUAL "3")
+ MESSAGE(SEND_ERROR "VersionTestC_FIND_VERSION_PATCH=${VersionTestC_FIND_VERSION_PATCH} is not 3")
+ENDIF(NOT "${VersionTestC_FIND_VERSION_PATCH}" STREQUAL "3")