From 144fbe74d5eb27fddbc737439b95ce51d7e512f5 Mon Sep 17 00:00:00 2001 From: Fernando Cacciola Date: Thu, 30 Oct 2008 15:59:05 +0000 Subject: [PATCH] Rename CGAL_SetupBLAS (et al) to CGAL_UseBlas (et al) - Part 1/2 --- Installation/cmake/modules/CGAL_SetupLAPACK.cmake | 2 +- Installation/cmake/modules/CGAL_SetupTAUCS.cmake | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Installation/cmake/modules/CGAL_SetupLAPACK.cmake b/Installation/cmake/modules/CGAL_SetupLAPACK.cmake index b4bf6448749..ffb2e8aa3ab 100644 --- a/Installation/cmake/modules/CGAL_SetupLAPACK.cmake +++ b/Installation/cmake/modules/CGAL_SetupLAPACK.cmake @@ -1,5 +1,5 @@ # LAPACK requires BLAS -include( CGAL_SetupBLAS ) +include( CGAL_UseBLAS ) if ( NOT LAPACK_FOUND ) diff --git a/Installation/cmake/modules/CGAL_SetupTAUCS.cmake b/Installation/cmake/modules/CGAL_SetupTAUCS.cmake index 395126be146..ddce087898e 100644 --- a/Installation/cmake/modules/CGAL_SetupTAUCS.cmake +++ b/Installation/cmake/modules/CGAL_SetupTAUCS.cmake @@ -1,6 +1,6 @@ # TAUCS requires BLAS and LAPACK -include(CGAL_SetupBLAS) -include(CGAL_SetupLAPACK) +include(CGAL_UseBLAS) +include(CGAL_UseLAPACK) if ( NOT TAUCS_FOUND )