From: Thomas Jarosch Date: Thu, 24 Jan 2013 08:17:20 +0000 (+0100) Subject: Change default build type to optimized build with debug symbols (RelWithDebInfo) X-Git-Tag: v1.0rc3~7 X-Git-Url: http://developer.intra2net.com/git/?p=libftdi;a=commitdiff_plain;h=4af77d33ddfb96c32760ee9a662fa34c6678e792 Change default build type to optimized build with debug symbols (RelWithDebInfo) --- 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)