Default to DEBUG=OFF and PROFILE=OFF.

This is because people are using mlpack from git and wondering why it is so
slow.
This commit is contained in:
Ryan Curtin
2016-07-05 14:11:43 -04:00
parent 3c801d6c8d
commit 3fe0b72997
+2 -2
View File
@@ -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)