[Cmake-commits] [cmake-commits] hoffman committed FindBLAS.cmake 1.6 1.7 FindLAPACK.cmake 1.5 1.6

cmake-commits at cmake.org cmake-commits at cmake.org
Mon Jul 21 15:34:13 EDT 2008


Update of /cvsroot/CMake/CMake/Modules
In directory public:/mounts/ram/cvs-serv26583

Modified Files:
	FindBLAS.cmake FindLAPACK.cmake 
Log Message:
ENH: get out of module if no fortran


Index: FindBLAS.cmake
===================================================================
RCS file: /cvsroot/CMake/CMake/Modules/FindBLAS.cmake,v
retrieving revision 1.6
retrieving revision 1.7
diff -C 2 -d -r1.6 -r1.7
*** FindBLAS.cmake	21 Jul 2008 19:11:03 -0000	1.6
--- FindBLAS.cmake	21 Jul 2008 19:34:11 -0000	1.7
***************
*** 22,26 ****
      message(FATAL_ERROR "FindBLAS is Fortran-only so Fortran must be enabled.")
    else(BLAS_FIND_REQUIRED)
!     MESSAGE(STATUS "Looking for BLAS... - NOT found (Fortran not enabled)")
    endif(BLAS_FIND_REQUIRED)
  endif(NOT _LANGUAGES_ MATCHES Fortran)
--- 22,27 ----
      message(FATAL_ERROR "FindBLAS is Fortran-only so Fortran must be enabled.")
    else(BLAS_FIND_REQUIRED)
!     message(STATUS "Looking for BLAS... - NOT found (Fortran not enabled)") #
!     return()
    endif(BLAS_FIND_REQUIRED)
  endif(NOT _LANGUAGES_ MATCHES Fortran)

Index: FindLAPACK.cmake
===================================================================
RCS file: /cvsroot/CMake/CMake/Modules/FindLAPACK.cmake,v
retrieving revision 1.5
retrieving revision 1.6
diff -C 2 -d -r1.5 -r1.6
*** FindLAPACK.cmake	21 Jul 2008 19:11:03 -0000	1.5
--- FindLAPACK.cmake	21 Jul 2008 19:34:11 -0000	1.6
***************
*** 25,29 ****
        "FindLAPACK is Fortran-only so Fortran must be enabled.")
    else(LAPACK_FIND_REQUIRED)
!     MESSAGE(STATUS "Looking for LAPACK... - NOT found (Fortran not enabled)")
    endif(LAPACK_FIND_REQUIRED)
  endif(NOT _LANGUAGES_ MATCHES Fortran)
--- 25,30 ----
        "FindLAPACK is Fortran-only so Fortran must be enabled.")
    else(LAPACK_FIND_REQUIRED)
!     message(STATUS "Looking for LAPACK... - NOT found (Fortran not enabled)")
!     return()
    endif(LAPACK_FIND_REQUIRED)
  endif(NOT _LANGUAGES_ MATCHES Fortran)



More information about the Cmake-commits mailing list