|
From: <ai...@us...> - 2009-02-01 19:46:57
|
Revision: 9428
http://plplot.svn.sourceforge.net/plplot/?rev=9428&view=rev
Author: airwin
Date: 2009-02-01 19:46:54 +0000 (Sun, 01 Feb 2009)
Log Message:
-----------
No need to set specific policy anymore since we are using the 2.6.0
policy according to the documentation of what
cmake_minimum_required(VERSION 2.6.0 FATAL_ERROR)
means (and partially confirmed by the new test loop that has been commented
out).
Modified Paths:
--------------
trunk/CMakeLists.txt
Modified: trunk/CMakeLists.txt
===================================================================
--- trunk/CMakeLists.txt 2009-02-01 19:03:48 UTC (rev 9427)
+++ trunk/CMakeLists.txt 2009-02-01 19:46:54 UTC (rev 9428)
@@ -21,8 +21,12 @@
# Version 2.6.0 or above of cmake is required!
CMAKE_MINIMUM_REQUIRED(VERSION 2.6.0 FATAL_ERROR)
-cmake_policy(SET CMP0007 NEW)
+#foreach(policy RANGE 0 9)
+# cmake_policy(GET CMP000${policy} policy_result)
+# message(STATUS "Policy CMP000${policy} is ${policy_result}")
+#endforeach(policy RANGE 0 9)
+
# Recommended way to do user overrides of C-related variables, is given at
# http://public.kitware.com/pipermail/cmake/2006-July/010334.html.
# See also, CMakeCInformation.cmake. There are also C++, and Fortran-specific
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|