From 19ae4362bd9e14e11eadfdfe210be02eb6592f51 Mon Sep 17 00:00:00 2001 From: Benoit Jacob Date: Sun, 17 Oct 2010 11:31:58 -0400 Subject: [PATCH] ah ok, we want to build this even without GSL. so the bug is in FindGSL.cmake. --- unsupported/test/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/unsupported/test/CMakeLists.txt b/unsupported/test/CMakeLists.txt index f0816563f..24068b6f6 100644 --- a/unsupported/test/CMakeLists.txt +++ b/unsupported/test/CMakeLists.txt @@ -109,10 +109,10 @@ if(GSL_FOUND) add_definitions("-DHAS_GSL" ${GSL_DEFINITIONS}) include_directories(${GSL_INCLUDE_DIR}) ei_add_property(EIGEN_TESTED_BACKENDS "GSL, ") - ei_add_test(polynomialsolver " " "${GSL_LIBRARIES}" ) else(GSL_FOUND) ei_add_property(EIGEN_MISSING_BACKENDS "GSL, ") set(GSL_LIBRARIES " ") endif(GSL_FOUND) +ei_add_test(polynomialsolver " " "${GSL_LIBRARIES}" ) ei_add_test(polynomialutils)