aboutsummaryrefslogtreecommitdiffhomepage
path: root/blas
diff options
context:
space:
mode:
Diffstat (limited to 'blas')
-rw-r--r--blas/CMakeLists.txt5
1 files changed, 3 insertions, 2 deletions
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)