From a02b0341155e44f2fad7945016307e5755490c61 Mon Sep 17 00:00:00 2001 From: Jordan Cristiano Date: Sun, 14 Jun 2015 17:27:36 -0400 Subject: [PATCH] premake script cleanup --- premake/premake5.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/premake/premake5.lua b/premake/premake5.lua index bcf1d04..7803db8 100644 --- a/premake/premake5.lua +++ b/premake/premake5.lua @@ -13,6 +13,7 @@ solution "demboyz" configuration "gmake" -- Enables C++11 support. buildoptions { "-std=c++0x" } + configuration {} project "demboyz" kind "ConsoleApp" @@ -33,9 +34,9 @@ solution "demboyz" configuration "Debug" targetdir (_ACTION .. "/build/Debug") defines { "DEBUG" } - flags { "Symbols" } configuration "Release" targetdir (_ACTION .. "/build/Release") defines { "NDEBUG" } optimize "Full" + configuration {}