From b4022e0f23116d99c67bac391035681daeb2c659 Mon Sep 17 00:00:00 2001 From: "erwin.coumans" Date: Wed, 5 Dec 2012 23:24:03 +0000 Subject: [PATCH] enable SSE by default in premake (SSE was already enabled for the cmake build system) Thanks to Pierre for the report, see http://bulletphysics.org/Bullet/phpBB3/viewtopic.php?f=9&t=8650 --- build/premake4.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/premake4.lua b/build/premake4.lua index ed80bb589..e3f419709 100644 --- a/build/premake4.lua +++ b/build/premake4.lua @@ -51,7 +51,7 @@ solution "0BulletSolution" configurations {"Release", "Debug"} configuration "Release" - flags { "Optimize", "StaticRuntime", "NoMinimalRebuild", "FloatFast"} + flags { "Optimize", "EnableSSE", "StaticRuntime", "NoMinimalRebuild", "FloatFast"} configuration "Debug" flags { "Symbols", "StaticRuntime" , "NoMinimalRebuild", "NoEditAndContinue" ,"FloatFast"}