mirror of https://github.com/CGAL/cgal
remove conditional compilation that is no longer needed
This commit is contained in:
parent
8a6795199d
commit
652be47d1f
|
|
@ -68,22 +68,13 @@ if ( CGAL_FOUND )
|
||||||
if(EIGEN3_FOUND OR LAPACK_FOUND)
|
if(EIGEN3_FOUND OR LAPACK_FOUND)
|
||||||
# Executables that require Eigen or BLAS and LAPACK
|
# Executables that require Eigen or BLAS and LAPACK
|
||||||
create_single_source_cgal_program( "jet_smoothing_example.cpp" )
|
create_single_source_cgal_program( "jet_smoothing_example.cpp" )
|
||||||
if(NOT Boost_VERSION EQUAL "105400")
|
create_single_source_cgal_program( "normal_estimation.cpp" )
|
||||||
create_single_source_cgal_program( "normal_estimation.cpp" )
|
|
||||||
endif()
|
|
||||||
else(EIGEN3_FOUND OR LAPACK_FOUND)
|
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.")
|
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)
|
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()
|
else()
|
||||||
|
|
||||||
message(STATUS "NOTICE: This program requires the CGAL library, and will not be compiled.")
|
message(STATUS "NOTICE: This program requires the CGAL library, and will not be compiled.")
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue