From eca9a0e347eefba8d72b56962f7e4d49c27ac837 Mon Sep 17 00:00:00 2001 From: Laurent Saboret Date: Wed, 12 Nov 2008 17:26:30 +0000 Subject: [PATCH] Code cleaning --- Jet_fitting_3/test/Jet_fitting_3/CMakeLists.txt | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Jet_fitting_3/test/Jet_fitting_3/CMakeLists.txt b/Jet_fitting_3/test/Jet_fitting_3/CMakeLists.txt index d9ff81a92bf..4b8dafdee9f 100644 --- a/Jet_fitting_3/test/Jet_fitting_3/CMakeLists.txt +++ b/Jet_fitting_3/test/Jet_fitting_3/CMakeLists.txt @@ -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()