From 9dc613b08451218ebfa593392ea2367edef834d1 Mon Sep 17 00:00:00 2001 From: /dev/urandom Date: Sun, 5 Feb 2017 16:33:56 +0100 Subject: [PATCH] [Premake] Use a balanced set of optimizations instead of fully optimizing the binary. --- premake5.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/premake5.lua b/premake5.lua index 70f9e661..d1610fa1 100644 --- a/premake5.lua +++ b/premake5.lua @@ -280,7 +280,7 @@ workspace "iw4x" configuration "Release*" defines { "NDEBUG" } flags { "MultiProcessorCompile", "LinkTimeOptimization", "No64BitChecks" } - optimize "Full" + optimize "On" configuration "Debug*" defines { "DEBUG", "_DEBUG" }