Author: akhaldi
Date: Fri Sep 21 14:29:02 2012
New Revision: 57356
URL:
http://svn.reactos.org/svn/reactos?rev=57356&view=rev
Log:
* Make CMAKE_BUILD_TYPE default to Debug for all our builds.
Modified:
trunk/reactos/cmake/config.cmake
Modified: trunk/reactos/cmake/config.cmake
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/cmake/config.cmake?rev=573…
==============================================================================
--- trunk/reactos/cmake/config.cmake [iso-8859-1] (original)
+++ trunk/reactos/cmake/config.cmake [iso-8859-1] Fri Sep 21 14:29:02 2012
@@ -52,6 +52,9 @@
"Whether to compile with the KD protocol.")
endif()
+set(CMAKE_BUILD_TYPE "Debug" CACHE STRING
+"Choose the type of build, options are: None(CMAKE_CXX_FLAGS or CMAKE_C_FLAGS used)
Debug Release RelWithDebInfo MinSizeRel." FORCE)
+
set(_ELF_ FALSE CACHE BOOL
"Whether to compile support for ELF files.
Do not enable unless you know what you're doing.")