From: maier Date: Fri, 28 Sep 2012 12:15:49 +0000 (+0000) Subject: And finally remove configure_blas.cmake X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a6afc939deb9e64b600a2199cf4bdeb1765cadbb;p=dealii-svn.git And finally remove configure_blas.cmake git-svn-id: https://svn.dealii.org/branches/branch_cmake@26829 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/TODO.CMAKE b/deal.II/TODO.CMAKE index e1d04429d4..e97ff26ce7 100644 --- a/deal.II/TODO.CMAKE +++ b/deal.II/TODO.CMAKE @@ -1,15 +1,5 @@ Major: -* Reorganize the configuration: - - -> Complete the FindModule logic for ARPACK and UMFPACK, i.e. - - -> check for arpack dependency blas in FindARPACK.cmake - -> check for UMFPACK dependencies blas and amd in FindUMFPACK.cmake - - -> Remove DEAL_II_WITH_BLAS. - - * Implement the documentation component. (I don't grok what's going on in this makefiles. There is a rudimentary doxygen call, though.) diff --git a/deal.II/cmake/configure/configure_blas.cmake b/deal.II/cmake/configure/configure_blas.cmake deleted file mode 100644 index 862b66c6ce..0000000000 --- a/deal.II/cmake/configure/configure_blas.cmake +++ /dev/null @@ -1,33 +0,0 @@ -# -# Configuration for the blas library: -# - -MACRO(FEATURE_BLAS_FIND_EXTERNAL var) - FIND_PACKAGE(BLAS) - - IF(BLAS_FOUND) - MARK_AS_ADVANCED( - atlas_LIBRARY - blas_LIBRARY - cblas_LIBRARY - ) - SET(${var} TRUE) - ENDIF() -ENDMACRO() - - -MACRO(FEATURE_BLAS_CONFIGURE_EXTERNAL var) - ADD_FLAGS(CMAKE_SHARED_LINKER_FLAGS "${BLAS_LINKER_FLAGS}") - - LIST(APPEND DEAL_II_EXTERNAL_LIBRARIES - ${BLAS_LIBRARIES} - ) - - SET(HAVE_LIBBLAS TRUE) - - SET(${var} TRUE) -ENDMACRO() - - -CONFIGURE_FEATURE(BLAS) -