Non-initial commit
This commit is contained in:
28
premake/demboyz.lua
Normal file
28
premake/demboyz.lua
Normal 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
BIN
premake/premake5.exe
Normal file
Binary file not shown.
4
premake/vs2013.bat
Normal file
4
premake/vs2013.bat
Normal file
@ -0,0 +1,4 @@
|
||||
|
||||
premake5 --file=demboyz.lua vs2013
|
||||
|
||||
pause
|
Reference in New Issue
Block a user