From 652be47d1f3d366911710c9b9f969eed38172e3f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Loriot?= Date: Wed, 7 Jan 2015 15:50:36 +0100 Subject: [PATCH] remove conditional compilation that is no longer needed --- .../examples/Point_set_processing_3/CMakeLists.txt | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/Point_set_processing_3/examples/Point_set_processing_3/CMakeLists.txt b/Point_set_processing_3/examples/Point_set_processing_3/CMakeLists.txt index 969769f7bc6..edb8abebb79 100644 --- a/Point_set_processing_3/examples/Point_set_processing_3/CMakeLists.txt +++ b/Point_set_processing_3/examples/Point_set_processing_3/CMakeLists.txt @@ -68,22 +68,13 @@ if ( CGAL_FOUND ) if(EIGEN3_FOUND OR LAPACK_FOUND) # Executables that require Eigen or BLAS and LAPACK create_single_source_cgal_program( "jet_smoothing_example.cpp" ) - if(NOT Boost_VERSION EQUAL "105400") - create_single_source_cgal_program( "normal_estimation.cpp" ) - endif() + create_single_source_cgal_program( "normal_estimation.cpp" ) else(EIGEN3_FOUND OR LAPACK_FOUND) message(STATUS "NOTICE: Some of the executables in this directory need either Eigen 3.1 (or greater) or LAPACK, and will not be compiled.") endif(EIGEN3_FOUND OR LAPACK_FOUND) - if(Boost_VERSION EQUAL "105400") - message(STATUS - "NOTICE: The examples \"normals_examples.cpp\" and " - "\"normal_estimation.cpp\" are incompatible with Boost 1.54," - " and will not be compiled.") - message(STATUS "See the following bug: https://svn.boost.org/trac/boost/ticket/9012") - endif() else() message(STATUS "NOTICE: This program requires the CGAL library, and will not be compiled.")