From daef68bbb8ffe38d3885bbcfb16e462b1b602e50 Mon Sep 17 00:00:00 2001 From: Amine Khaldi Date: Fri, 21 Sep 2012 14:29:02 +0000 Subject: [PATCH] * Make CMAKE_BUILD_TYPE default to Debug for all our builds. svn path=/trunk/; revision=57356 --- reactos/cmake/config.cmake | 3 +++ 1 file changed, 3 insertions(+) diff --git a/reactos/cmake/config.cmake b/reactos/cmake/config.cmake index 3c28265c1b2..bded7e2838f 100644 --- a/reactos/cmake/config.cmake +++ b/reactos/cmake/config.cmake @@ -52,6 +52,9 @@ else() "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.")