[cmake-commits] hoffman committed CMakeLists.txt 1.59.2.10 1.59.2.11

cmake-commits at cmake.org cmake-commits at cmake.org
Fri Nov 10 10:12:58 EST 2006


Update of /cvsroot/CMake/CMake/Tests/Complex
In directory public:/mounts/ram/cvs-serv30791/Tests/Complex

Modified Files:
      Tag: CMake-2-4
	CMakeLists.txt 
Log Message:
ENH: merge from main tree fix for vs all build qt and mpi2


Index: CMakeLists.txt
===================================================================
RCS file: /cvsroot/CMake/CMake/Tests/Complex/CMakeLists.txt,v
retrieving revision 1.59.2.10
retrieving revision 1.59.2.11
diff -u -d -r1.59.2.10 -r1.59.2.11
--- CMakeLists.txt	27 Oct 2006 20:01:53 -0000	1.59.2.10
+++ CMakeLists.txt	10 Nov 2006 15:12:56 -0000	1.59.2.11
@@ -53,6 +53,17 @@
 
 TEST_VAR_ARG(1 2 3)
 
+# Floating-point comparison test.
+IF(2.4 LESS 2.4)
+  MESSAGE(FATAL_ERROR "Failed: 2.4 LESS 2.4")
+ENDIF(2.4 LESS 2.4)
+IF(2.4 GREATER 2.4)
+  MESSAGE(FATAL_ERROR "Failed: 2.4 GREATER 2.4")
+ENDIF(2.4 GREATER 2.4)
+IF(NOT 2.4 EQUAL 2.4)
+  MESSAGE(FATAL_ERROR "Failed: NOT 2.4 EQUAL 2.4")
+ENDIF(NOT 2.4 EQUAL 2.4)
+
 #
 # Use the ansi CXX compile flag for building cmake
 #



More information about the Cmake-commits mailing list