cgal/CGAL_ipelets/demo/CGAL_ipelets
Laurent Rineau 2db4effa7e CMake: Fix the handling of cmake_policy
That is a followup-to my commit last year:
  | ------------------------------------------------------------------------
  | r63198 | lrineau | 2011-04-28 19:45:22 +0200 (Thu, 28 Apr 2011) | 5 lines
  | 
  | Try to fix my last revision about cmake_policy, with CMake-2.6.x
  | 
  | CMake gives an error if one tries to use cmake_policy(VERSION x.y.z) if
  | x.y.z is greater than the current CMake version.
  | 
  | ------------------------------------------------------------------------

The following check:
  if("${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION}" VERSION_GREATER 2.6)
is useless just after a call to:
 cmake_minimum_required(VERSION 2.6.2)



The script used to fix that was:


#!/usr/bin/env perl

$replacement=<<'END';
if("${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION}.${CMAKE_PATCH_VERSION}" VERSION_GREATER 2.8.3)
  cmake_policy(VERSION 2.8.4)
else()
  cmake_policy(VERSION 2.6)
endif()
END

while(<>) {
    if(/if\("\${CMAKE_MAJOR_VERSION}.\${CMAKE_MINOR_VERSION}" VERSION_GREATER 2.6\)/) {
        while(<>) {
            if(/^endif\(\)/) {
                print "$replacement";
                while(<>) {
                    print;
                }
                exit 0
            }
        }
    }
    print;
}
2012-08-22 12:35:03 +00:00
..
include/CGAL_ipelets change LGPLv2 -> LGPLv3 2011-10-10 13:48:25 +00:00
lua ipe 7 support using -DWITH_IPE_7=ON while cmaking demos 2009-12-29 16:46:19 +00:00
CMakeLists.txt CMake: Fix the handling of cmake_policy 2012-08-22 12:35:03 +00:00
alpha_shapes.cpp remove unused var warnings 2012-07-27 10:29:10 +00:00
arrangement.cpp Workaround the check of NDEBUG in the testsuite. 2012-01-26 11:21:43 +00:00
bbox_restriction.cpp change LGPLv2 -> LGPLv3 2011-10-10 13:48:25 +00:00
cgal_test_with_cmake s/succesful/successful 2010-08-12 08:30:26 +00:00
diagrams.cpp change LGPLv2 -> LGPLv3 2011-10-10 13:48:25 +00:00
generator.cpp change LGPLv2 -> LGPLv3 2011-10-10 13:48:25 +00:00
hilbert_sort.cpp change LGPLv2 -> LGPLv3 2011-10-10 13:48:25 +00:00
hull.cpp change LGPLv2 -> LGPLv3 2011-10-10 13:48:25 +00:00
mesh_2.cpp change LGPLv2 -> LGPLv3 2011-10-10 13:48:25 +00:00
minkowski.cpp change LGPLv2 -> LGPLv3 2011-10-10 13:48:25 +00:00
multi_delaunay.cpp remove unused var warnings 2012-07-27 10:29:10 +00:00
multi_regular.cpp change LGPLv2 -> LGPLv3 2011-10-10 13:48:25 +00:00
partition.cpp remove unused var warnings 2012-07-27 10:29:10 +00:00
pca.cpp change LGPLv2 -> LGPLv3 2011-10-10 13:48:25 +00:00
simple_triangulation.cpp update text 2009-06-08 20:15:20 +00:00
skeleton.cpp change LGPLv2 -> LGPLv3 2011-10-10 13:48:25 +00:00
triangulation.cpp change LGPLv2 -> LGPLv3 2011-10-10 13:48:25 +00:00