From 2084a66dbf6a61a5ef2c8d74255fcb4ff1c6313b Mon Sep 17 00:00:00 2001 From: Henrik Hautakoski Date: Fri, 24 Apr 2020 13:38:20 +0200 Subject: [PATCH] CMakeLists.txt: set CMAKE_BUILD_TYPE to Debug per default. --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 58a5c4a..7a97b2b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -30,9 +30,9 @@ endif() # Append modules dir list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake") -# Default to release build if none is set. +# Default to debug build if none is set. if (NOT CMAKE_BUILD_TYPE) - set( CMAKE_BUILD_TYPE Release ) + set( CMAKE_BUILD_TYPE Debug ) endif() # Install path