remove conditional compilation that is no longer needed

This commit is contained in:
Sébastien Loriot 2015-01-07 15:50:36 +01:00
parent 8a6795199d
commit 652be47d1f
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.")