From 3b6d97b51a7e7a4b0c69ae6be44b1c16d72c2e80 Mon Sep 17 00:00:00 2001 From: Hauke Heibel Date: Fri, 17 Dec 2010 10:52:57 +0100 Subject: [PATCH] Re-enabled the BLAS compilation on non-MSVC systems. --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 44b454e74..9686fd162 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -291,9 +291,9 @@ add_subdirectory(demos EXCLUDE_FROM_ALL) if(NOT MSVC) if(EIGEN_LEAVE_TEST_IN_ALL_TARGET) - #add_subdirectory(blas) + add_subdirectory(blas) else() - #add_subdirectory(blas EXCLUDE_FROM_ALL) + add_subdirectory(blas EXCLUDE_FROM_ALL) endif() endif(NOT MSVC)