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 )