Browse Source

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 <tomi.valkeinen@iki.fi>
pull/251/head
Tomi Valkeinen 11 years ago
parent
commit
7f612e22e5
  1. 1
      build/premake4.lua

1
build/premake4.lua

@ -18,7 +18,6 @@ solution "CppSharp" @@ -18,7 +18,6 @@ solution "CppSharp"
location (builddir)
objdir (builddir .. "/obj/")
targetdir (libdir)
libdirs { libdir }
debugdir (bindir)
-- startproject "Generator"

Loading…
Cancel
Save