Browse Source

Updated build objects directory to use same pattern as libraries.

pull/585/head
Joao Matos 10 years ago
parent
commit
04f6baf0c8
  1. 1
      build/Helpers.lua
  2. 2
      build/premake4.lua

1
build/Helpers.lua

@ -14,6 +14,7 @@ if _ARGS[1] then @@ -14,6 +14,7 @@ if _ARGS[1] then
builddir = path.getabsolute("./" .. _ARGS[1]);
end
objsdir = path.join(builddir, "obj", "%{cfg.buildcfg}_%{cfg.platform}");
libdir = path.join(builddir, "lib", "%{cfg.buildcfg}_%{cfg.platform}");
gendir = path.join(builddir, "gen");

2
build/premake4.lua

@ -16,7 +16,7 @@ solution "CppSharp" @@ -16,7 +16,7 @@ solution "CppSharp"
flags { common_flags }
location (builddir)
objdir (path.join(builddir, "obj"))
objdir (objsdir)
targetdir (libdir)
debugdir (bindir)

Loading…
Cancel
Save