From 8318005e759a3d87fab82c486169d01986aec55a Mon Sep 17 00:00:00 2001 From: "erwin.coumans" Date: Wed, 5 Nov 2008 06:09:00 +0000 Subject: [PATCH] use Release config by default for CMAke, not Debug --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index add6c6a5e..98f1694fa 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -3,7 +3,7 @@ cmake_minimum_required(VERSION 2.4) PROJECT(BULLET_PHYSICS) IF (NOT CMAKE_BUILD_TYPE) - SET(CMAKE_BUILD_TYPE "Debug") + SET(CMAKE_BUILD_TYPE "Release") ENDIF (NOT CMAKE_BUILD_TYPE)