From 5a65d7970a8b4df86a6f5a2759a69a01df8f144d Mon Sep 17 00:00:00 2001 From: Gael Guennebaud Date: Mon, 22 Nov 2010 19:07:29 +0100 Subject: now the full blas folder requires a fortran compiler --- blas/CMakeLists.txt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'blas') diff --git a/blas/CMakeLists.txt b/blas/CMakeLists.txt index 78b5f496c..61844b67c 100644 --- a/blas/CMakeLists.txt +++ b/blas/CMakeLists.txt @@ -1,7 +1,7 @@ project(EigenBlas CXX) -if((NOT DEFINED EIGEN_Fortran_COMPILER_WORKS) OR EIGEN_Fortran_COMPILER_WORKS) +if( ( NOT DEFINED EIGEN_Fortran_COMPILER_WORKS ) OR EIGEN_Fortran_COMPILER_WORKS) enable_language(Fortran OPTIONAL) @@ -13,6 +13,8 @@ if((NOT DEFINED EIGEN_Fortran_COMPILER_WORKS) OR EIGEN_Fortran_COMPILER_WORKS) endif() +if(CMAKE_Fortran_COMPILER_WORKS) + add_custom_target(blas) set(EigenBlas_SRCS single.cpp double.cpp complex_single.cpp complex_double.cpp xerbla.cpp @@ -36,6 +38,5 @@ install(TARGETS eigen_blas ARCHIVE DESTINATION lib) -if(CMAKE_Fortran_COMPILER_WORKS) add_subdirectory(testing) endif(CMAKE_Fortran_COMPILER_WORKS) -- cgit v1.2.3