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

Loading…
Cancel
Save