demboyz/premake/demboyz.lua

41 lines
1.0 KiB
Lua
Raw Normal View History

2014-10-29 05:20:24 +01:00
solution "demboyz"
basedir ".."
location (_ACTION)
startproject "demboyz"
configurations { "Debug", "Release" }
platforms "x32"
flags "MultiProcessorCompile"
2014-10-29 05:20:24 +01:00
2015-05-14 03:29:37 +02:00
-- GCC specific build options.
configuration "gmake"
-- Enables C++11 support.
buildoptions { "-std=c++0x" }
2014-10-29 05:20:24 +01:00
project "demboyz"
kind "ConsoleApp"
language "C++"
files
{
"../demboyz/*.h",
"../demboyz/*.cpp",
"../demboyz/netmessages/*.h",
"../demboyz/netmessages/*.cpp",
"../external/sourcesdk/*.h",
"../external/sourcesdk/*.cpp"
}
includedirs
{
"../external/sourcesdk"
}
2014-10-29 05:20:24 +01:00
configuration "Debug"
targetdir (_ACTION .. "/build/Debug")
defines { "DEBUG" }
flags { "Symbols" }
configuration "Release"
targetdir (_ACTION .. "/build/Release")
defines { "NDEBUG" }
optimize "Full"