Code cleaning

This commit is contained in:
Laurent Saboret 2008-11-12 17:26:30 +00:00
parent a46390251e
commit eca9a0e347
1 changed files with 4 additions and 3 deletions

View File

@ -20,7 +20,8 @@ if ( CGAL_FOUND )
include( CGAL_CreateSingleSourceCGALProgram )
find_package(LAPACK QUIET)
# Link with BLAS and LAPACK (required)
find_package(LAPACK)
if(LAPACK_FOUND)
@ -29,14 +30,14 @@ if ( CGAL_FOUND )
else(LAPACK_FOUND)
message(STATUS "NOTICE: This program requires the LAPACK API, and will not be compiled.")
message(STATUS "NOTICE: This program requires LAPACK, and will not be compiled.")
endif(LAPACK_FOUND)
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.")
endif()