From 2d9033f3d4a39338f4b7e5df6ff91702244fd668 Mon Sep 17 00:00:00 2001 From: Cameron Hart Date: Sun, 6 Oct 2013 12:07:38 +1100 Subject: [PATCH] Generate debug symbols in release builds and use fast floats. --- RecastDemo/premake4.lua | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/RecastDemo/premake4.lua b/RecastDemo/premake4.lua index a58e613..2bd8f3a 100644 --- a/RecastDemo/premake4.lua +++ b/RecastDemo/premake4.lua @@ -16,14 +16,15 @@ solution "recastnavigation" -- extra warnings, no exceptions or rtti flags { "ExtraWarnings", + "FloatFast", "NoExceptions", - "NoRTTI" + "NoRTTI", + "Symbols" } -- debug configs configuration "Debug*" defines { "DEBUG" } - flags { "Symbols" } targetdir ( todir .. "/lib/Debug" ) -- release configs