summaryrefslogtreecommitdiffstats
path: root/Tests
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2006-10-23 17:37:24 (GMT)
committerBrad King <brad.king@kitware.com>2006-10-23 17:37:24 (GMT)
commitd1a9c93119958a1a394fe0dde5814cd6a8f3f748 (patch)
treecf2adb57d85858bb4ecca2fe3e288a1fdcb8a979 /Tests
parent0c52510f21fdddf289735aa30a0df9671d63970a (diff)
downloadCMake-d1a9c93119958a1a394fe0dde5814cd6a8f3f748.zip
CMake-d1a9c93119958a1a394fe0dde5814cd6a8f3f748.tar.gz
CMake-d1a9c93119958a1a394fe0dde5814cd6a8f3f748.tar.bz2
ENH: Patch from Alex to provide nicer syntax for FILE_IS_NEWER. Using name IS_NEWER_THAN so old syntax will continue to work.
Diffstat (limited to 'Tests')
-rw-r--r--Tests/StringFileTest/CMakeLists.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/Tests/StringFileTest/CMakeLists.txt b/Tests/StringFileTest/CMakeLists.txt
index 3376a38..e6288db 100644
--- a/Tests/StringFileTest/CMakeLists.txt
+++ b/Tests/StringFileTest/CMakeLists.txt
@@ -79,6 +79,9 @@ ENDFOREACH(var)
IF(NOT FILE_IS_NEWER "${file}" "${CMAKE_CURRENT_SOURCE_DIR}/InputFile.h.in")
MESSAGE(FATAL_ERROR "IF(FILE_IS_NEWER) does not seem to work.")
ENDIF(NOT FILE_IS_NEWER "${file}" "${CMAKE_CURRENT_SOURCE_DIR}/InputFile.h.in")
+IF(NOT "${file}" IS_NEWER_THAN "${CMAKE_CURRENT_SOURCE_DIR}/InputFile.h.in")
+ MESSAGE(FATAL_ERROR "IF(FILE_IS_NEWER) does not seem to work.")
+ENDIF(NOT "${file}" IS_NEWER_THAN "${CMAKE_CURRENT_SOURCE_DIR}/InputFile.h.in")
# Test configuration of the string
SET(TEST_DEFINED 123)