aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAokromes <Aokromes@users.noreply.github.com>2017-09-01 02:15:19 +0200
committerGitHub <noreply@github.com>2017-09-01 02:15:19 +0200
commitccfcf3940e98d333a20684e910483d700933945a (patch)
treef49990c30481fdb6e97ad0cfa33bf44b50cc3436
parent7a62c71a46d9b8d233f3741986255a5cab33ebfd (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)