Changed output dir of compiled binaries to bin

This commit is contained in:
Jordan Cristiano 2015-08-31 23:58:47 -04:00
parent 372267d192
commit 8ef2c0ebfc
1 changed files with 7 additions and 9 deletions

View File

@ -2,12 +2,19 @@
solution "demboyz"
basedir ".."
location (_ACTION)
targetdir "../bin"
startproject "demboyz"
configurations { "Debug", "Release" }
platforms "x32"
flags { "MultiProcessorCompile", "Symbols" }
defines "_CRT_SECURE_NO_WARNINGS"
configuration "Debug"
defines { "DEBUG" }
configuration "Release"
defines { "NDEBUG" }
optimize "Full"
configuration {}
-- GCC specific build options.
configuration "gmake"
@ -34,12 +41,3 @@ solution "demboyz"
"../demboyz"
}
configuration "Debug"
targetdir (_ACTION .. "/build/Debug")
defines { "DEBUG" }
configuration "Release"
targetdir (_ACTION .. "/build/Release")
defines { "NDEBUG" }
optimize "Full"
configuration {}