[mlpack-svn] r16878 - mlpack/tags/mlpack-1.0.9

fastlab-svn at coffeetalk-1.cc.gatech.edu fastlab-svn at coffeetalk-1.cc.gatech.edu
Mon Jul 28 10:24:28 EDT 2014


Author: rcurtin
Date: Mon Jul 28 10:24:27 2014
New Revision: 16878

Log:
Default to DEBUG=OFF and PROFILE=OFF for a release.


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

Modified: mlpack/tags/mlpack-1.0.9/CMakeLists.txt
==============================================================================
--- mlpack/tags/mlpack-1.0.9/CMakeLists.txt	(original)
+++ mlpack/tags/mlpack-1.0.9/CMakeLists.txt	Mon Jul 28 10:24:27 2014
@@ -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