diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2002-04-17 20:16:06 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2002-04-17 20:16:06 (GMT) |
commit | 0415b58573ba63a9c6168d8af05a165ea5e24774 (patch) | |
tree | ef79785f99fd23797aa8dcb27083c6a0cc9c1c5a /Tests/ComplexRelativePaths | |
parent | b7c368b5e37289f85f2155db1b594d6bc4a3f0a4 (diff) | |
download | CMake-0415b58573ba63a9c6168d8af05a165ea5e24774.zip CMake-0415b58573ba63a9c6168d8af05a165ea5e24774.tar.gz CMake-0415b58573ba63a9c6168d8af05a165ea5e24774.tar.bz2 |
ENH: backwards compatible for VTK 4.0, add cmake version requires
Diffstat (limited to 'Tests/ComplexRelativePaths')
-rw-r--r-- | Tests/ComplexRelativePaths/CMakeLists.txt | 3 | ||||
-rw-r--r-- | Tests/ComplexRelativePaths/Executable/complex.cxx | 8 | ||||
-rw-r--r-- | Tests/ComplexRelativePaths/cmTestConfigure.h.in | 1 |
3 files changed, 12 insertions, 0 deletions
diff --git a/Tests/ComplexRelativePaths/CMakeLists.txt b/Tests/ComplexRelativePaths/CMakeLists.txt index 720ae1a..c2448a4 100644 --- a/Tests/ComplexRelativePaths/CMakeLists.txt +++ b/Tests/ComplexRelativePaths/CMakeLists.txt @@ -3,6 +3,9 @@ # PROJECT (Complex) +CMAKE_MINIMUM_REQUIRED(VERSION 1.3) + + # # Use the ansi CXX compile flag for building cmake # diff --git a/Tests/ComplexRelativePaths/Executable/complex.cxx b/Tests/ComplexRelativePaths/Executable/complex.cxx index af49dcd..7d86179 100644 --- a/Tests/ComplexRelativePaths/Executable/complex.cxx +++ b/Tests/ComplexRelativePaths/Executable/complex.cxx @@ -647,6 +647,14 @@ int main() #endif #endif // defined(_WIN32) && !defined(__CYGWIN__) + if(strcmp(CMAKE_MINIMUM_REQUIRED_VERSION, "1.3") == 0) + { + cmPassed("CMAKE_MINIMUM_REQUIRED_VERSION is set to 1.3"); + } + else + { + cmFailed("CMAKE_MINIMUM_REQUIRED_VERSION is not set to the expected 1.3"); + } // ---------------------------------------------------------------------- // Summary diff --git a/Tests/ComplexRelativePaths/cmTestConfigure.h.in b/Tests/ComplexRelativePaths/cmTestConfigure.h.in index 5edff15..58a3f60 100644 --- a/Tests/ComplexRelativePaths/cmTestConfigure.h.in +++ b/Tests/ComplexRelativePaths/cmTestConfigure.h.in @@ -54,3 +54,4 @@ #if defined(_WIN32) && !defined(__CYGWIN__) #define REGISTRY_TEST_PATH "${REGISTRY_TEST_PATH}" #endif +#define CMAKE_MINIMUM_REQUIRED_VERSION "${CMAKE_MINIMUM_REQUIRED_VERSION}" |