demboyz/premake/premake5.lua

46 lines
1.1 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"
2015-05-15 23:35:08 +02:00
flags { "MultiProcessorCompile", "Symbols" }
defines "_CRT_SECURE_NO_WARNINGS"
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" }
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",
2015-06-15 04:58:23 +02:00
"../external/**.h",
"../external/**.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",
"../demboyz"
}
2014-10-29 05:20:24 +01:00
configuration "Debug"
targetdir (_ACTION .. "/build/Debug")
defines { "DEBUG" }
configuration "Release"
targetdir (_ACTION .. "/build/Release")
defines { "NDEBUG" }
optimize "Full"
2015-06-14 23:27:36 +02:00
configuration {}