mirror of https://github.com/CGAL/cgal
Code cleaning
This commit is contained in:
parent
a46390251e
commit
eca9a0e347
|
|
@ -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()
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue