Browse Source

Output object files to the build folder instead of the root.

pull/1/head
triton 13 years ago
parent
commit
7bd0d28ecd
  1. 6
      build/premake4.lua

6
build/premake4.lua

@ -19,10 +19,12 @@ solution "Cxxi"
"Release" "Release"
} }
objdir ( "../obj/" .. action) platforms { "x32" }
objdir ( "obj/" .. action)
targetdir ("../bin/") targetdir ("../bin/")
debugdir ( "../bin/") debugdir ( "../bin/")
platforms { "x32" }
configuration "Debug" configuration "Debug"
defines { "DEBUG" } defines { "DEBUG" }

Loading…
Cancel
Save