[mlpack-svn] r15953 - mlpack/tags/mlpack-1.0.7

fastlab-svn at coffeetalk-1.cc.gatech.edu fastlab-svn at coffeetalk-1.cc.gatech.edu
Fri Oct 4 13:23:50 EDT 2013


Author: rcurtin
Date: Fri Oct  4 13:23:50 2013
New Revision: 15953

Log:
Compile with DEBUG=OFF and PROFILE=OFF by default.


Modified:
   mlpack/tags/mlpack-1.0.7/CMakeLists.txt

Modified: mlpack/tags/mlpack-1.0.7/CMakeLists.txt
==============================================================================
--- mlpack/tags/mlpack-1.0.7/CMakeLists.txt	(original)
+++ mlpack/tags/mlpack-1.0.7/CMakeLists.txt	Fri Oct  4 13:23:50 2013
@@ -3,8 +3,8 @@
 
 # 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)
 



More information about the mlpack-svn mailing list