Non-initial commit

This commit is contained in:
Jordan Cristiano
2014-10-29 00:20:24 -04:00
parent 347f2c439c
commit 65810867d8
9 changed files with 1429 additions and 0 deletions

28
premake/demboyz.lua Normal file
View File

@ -0,0 +1,28 @@
solution "demboyz"
basedir ".."
location (_ACTION)
startproject "demboyz"
configurations { "Debug", "Release" }
platforms "x32"
vpaths
{
["Header Files"] = { "../**.h" },
["Source Files"] = { "../**.cpp" }
}
project "demboyz"
kind "ConsoleApp"
language "C++"
files { "../demboyz/**.h", "../demboyz/**.cpp" }
configuration "Debug"
targetdir (_ACTION .. "/build/Debug")
defines { "DEBUG" }
flags { "Symbols" }
configuration "Release"
targetdir (_ACTION .. "/build/Release")
defines { "NDEBUG" }
optimize "Full"

BIN
premake/premake5.exe Normal file

Binary file not shown.

4
premake/vs2013.bat Normal file
View File

@ -0,0 +1,4 @@
premake5 --file=demboyz.lua vs2013
pause