From 4af77d33ddfb96c32760ee9a662fa34c6678e792 Mon Sep 17 00:00:00 2001 From: Thomas Jarosch Date: Thu, 24 Jan 2013 09:17:20 +0100 Subject: [PATCH] Change default build type to optimized build with debug symbols (RelWithDebInfo) --- CMakeLists.txt | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 445a38e..233d1da 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -9,7 +9,7 @@ SET(CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}") # CMake if("${CMAKE_BUILD_TYPE}" STREQUAL "") - set(CMAKE_BUILD_TYPE Debug) + set(CMAKE_BUILD_TYPE RelWithDebInfo) endif("${CMAKE_BUILD_TYPE}" STREQUAL "") set(CMAKE_COLOR_MAKEFILE ON) cmake_minimum_required(VERSION 2.6 FATAL_ERROR) -- 1.7.1