demboyz/premake/premake5.lua

52 lines
1.2 KiB
Lua
Raw Normal View History

2014-10-29 05:20:24 +01:00
solution "demboyz"
basedir ".."
location (_ACTION)
targetdir "../bin"
2014-10-29 05:20:24 +01:00
startproject "demboyz"
configurations { "Debug", "Release" }
platforms "x32"
2015-05-15 23:35:08 +02:00
flags { "MultiProcessorCompile", "Symbols" }
defines "_CRT_SECURE_NO_WARNINGS"
configuration "Debug"
defines { "DEBUG" }
configuration "Release"
defines { "NDEBUG" }
optimize "Full"
configuration {}
2016-04-17 02:56:57 +02:00
2015-05-14 03:29:37 +02:00
-- GCC specific build options.
configuration "gmake"
-- Enables C++11 support.
buildoptions { "-std=c++0x" }
2015-06-14 23:27:36 +02:00
configuration {}
2015-05-14 03:29:37 +02:00
2014-10-29 05:20:24 +01:00
project "demboyz"
kind "ConsoleApp"
language "C++"
files
{
"../demboyz/**.h",
"../demboyz/**.cpp"
}
includedirs
{
2015-06-19 20:12:51 +02:00
"../external/json_checker/include",
2015-07-13 04:50:55 +02:00
"../external/cbase64-1.1/include",
2015-06-15 04:58:23 +02:00
"../external/sourcesdk/include",
"../external/rapidjson-1.0.2/include",
2016-04-17 02:56:57 +02:00
"../external/snappy-1.1.3/include",
"../demboyz"
}
links
{
"json_checker",
"sourcesdk"
}
project "*"
2014-10-29 05:20:24 +01:00
dofile "json_checker.lua"
dofile "snappy.lua"
dofile "sourcesdk.lua"