[mlpack-svn] r13407 - mlpack/tags/mlpack-1.0.2

fastlab-svn at coffeetalk-1.cc.gatech.edu fastlab-svn at coffeetalk-1.cc.gatech.edu
Wed Aug 15 13:41:43 EDT 2012


Author: rcurtin
Date: 2012-08-15 13:41:43 -0400 (Wed, 15 Aug 2012)
New Revision: 13407

Modified:
   mlpack/tags/mlpack-1.0.2/CMakeLists.txt
Log:
Compile without debugging or profiling symbols by default (i.e. be fast unless the user asks otherwise).


Modified: mlpack/tags/mlpack-1.0.2/CMakeLists.txt
===================================================================
--- mlpack/tags/mlpack-1.0.2/CMakeLists.txt	2012-08-15 17:40:09 UTC (rev 13406)
+++ mlpack/tags/mlpack-1.0.2/CMakeLists.txt	2012-08-15 17:41:43 UTC (rev 13407)
@@ -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)
 
 # This is as of yet unused.




More information about the mlpack-svn mailing list