Merge branch 'Point_set_processing-cmake_remove_condition-local'

Tested in CGAL-4.6-Ic-100
This commit is contained in:
Sébastien Loriot 2015-01-09 12:05:06 +01:00
commit 5efcf67940
1 changed files with 1 additions and 10 deletions

View File

@ -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.")