From 7f612e22e573bc4979ff96e2715207ae115217b4 Mon Sep 17 00:00:00 2001 From: Tomi Valkeinen Date: Mon, 5 May 2014 14:16:08 +0300 Subject: [PATCH] build: remove setting libdirs in premake4.lua "libdirs { libdir }" in the main premake4.lua file causes Debug_x32 directory to be added for the libdirs for all builds. I think that's a bug in premake, as at the same place setting, say, "targetdir" works fine. However, setting "libdir" to "libdirs" is not needed at all, so let's remove it. Signed-off-by: Tomi Valkeinen --- build/premake4.lua | 1 - 1 file changed, 1 deletion(-) diff --git a/build/premake4.lua b/build/premake4.lua index 808e78fa..d9c3a249 100644 --- a/build/premake4.lua +++ b/build/premake4.lua @@ -18,7 +18,6 @@ solution "CppSharp" location (builddir) objdir (builddir .. "/obj/") targetdir (libdir) - libdirs { libdir } debugdir (bindir) -- startproject "Generator"