From 4e82dfd1d5994c611f5a72bd6f65391e4d4cdc64 Mon Sep 17 00:00:00 2001 From: Ryan Curtin Date: Tue, 1 Feb 2011 19:38:02 +0000 Subject: [PATCH] Disable compilation of methods that require sparse because sparse support is essentially nonexistent. --- fastlib/branches/fastlib-stl/mlpack/CMakeLists.txt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/fastlib/branches/fastlib-stl/mlpack/CMakeLists.txt b/fastlib/branches/fastlib-stl/mlpack/CMakeLists.txt index 1661a9810e..467c729735 100644 --- a/fastlib/branches/fastlib-stl/mlpack/CMakeLists.txt +++ b/fastlib/branches/fastlib-stl/mlpack/CMakeLists.txt @@ -60,7 +60,9 @@ set( DIRS ) if(WITH_SPARSE) - set(DIRS ${DIRS} kernel_pca) +# Don't compile this because sparse support in this branch is not really +# existent +# set(DIRS ${DIRS} kernel_pca) endif() foreach(dir ${DIRS})