From 8ef2c0ebfc6bb896c00da5b05a82ecc8fa5051cf Mon Sep 17 00:00:00 2001 From: Jordan Cristiano Date: Mon, 31 Aug 2015 23:58:47 -0400 Subject: [PATCH] Changed output dir of compiled binaries to bin --- premake/premake5.lua | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/premake/premake5.lua b/premake/premake5.lua index 5a3ccfd..298fe6a 100644 --- a/premake/premake5.lua +++ b/premake/premake5.lua @@ -2,12 +2,19 @@ solution "demboyz" basedir ".." location (_ACTION) + targetdir "../bin" startproject "demboyz" configurations { "Debug", "Release" } platforms "x32" flags { "MultiProcessorCompile", "Symbols" } defines "_CRT_SECURE_NO_WARNINGS" + configuration "Debug" + defines { "DEBUG" } + configuration "Release" + defines { "NDEBUG" } + optimize "Full" + configuration {} -- GCC specific build options. configuration "gmake" @@ -34,12 +41,3 @@ solution "demboyz" "../demboyz" } - configuration "Debug" - targetdir (_ACTION .. "/build/Debug") - defines { "DEBUG" } - - configuration "Release" - targetdir (_ACTION .. "/build/Release") - defines { "NDEBUG" } - optimize "Full" - configuration {}