From 3fe0b72997697baf470ef25d959218cdb81d3c4a Mon Sep 17 00:00:00 2001 From: Ryan Curtin Date: Tue, 31 May 2016 15:01:28 -0400 Subject: [PATCH] Default to DEBUG=OFF and PROFILE=OFF. This is because people are using mlpack from git and wondering why it is so slow. --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index b5ce3bca7c..321cb63373 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -18,8 +18,8 @@ endif() # First, define all the compilation options. # We default to debugging mode for developers. -option(DEBUG "Compile with debugging information" ON) -option(PROFILE "Compile with profiling information" ON) +option(DEBUG "Compile with debugging information" OFF) +option(PROFILE "Compile with profiling information" OFF) option(ARMA_EXTRA_DEBUG "Compile with extra Armadillo debugging symbols." OFF) option(MATLAB_BINDINGS "Compile MATLAB bindings if MATLAB is found." OFF) option(TEST_VERBOSE "Run test cases with verbose output." OFF)