aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShauren <shauren.trinity@gmail.com>2017-08-31 18:10:59 +0200
committerShauren <shauren.trinity@gmail.com>2017-08-31 18:10:59 +0200
commitf487ae12bdac7d6b245a07b9a2b1ab75227ca6c0 (patch)
treeb2e978f80e0114eec695250efe91d912ec76f82f
parentc2f4a7a17e621ed944ee8e003d7b9ee9b0fca399 (diff)
Buildsystem: Default to RelWithDebInfo instead of Release
-rw-r--r--CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 33336974742..20301b84e4c 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -39,7 +39,7 @@ set(CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake/macros")
# build in Release-mode by default if not explicitly set
if( NOT CMAKE_BUILD_TYPE )
- set(CMAKE_BUILD_TYPE "Release")
+ set(CMAKE_BUILD_TYPE "RelWithDebInfo")
endif()
include(CheckCXXSourceRuns)