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" }
|
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++"
|
2015-05-13 02:39:56 +02:00
|
|
|
files
|
|
|
|
{
|
2015-06-14 23:07:33 +02:00
|
|
|
"../demboyz/**.h",
|
|
|
|
"../demboyz/**.cpp",
|
2015-05-13 02:39:56 +02:00
|
|
|
"../external/sourcesdk/*.h",
|
|
|
|
"../external/sourcesdk/*.cpp"
|
|
|
|
}
|
|
|
|
includedirs
|
|
|
|
{
|
2015-06-14 22:15:08 +02:00
|
|
|
"../external",
|
|
|
|
"../demboyz"
|
2015-05-13 02:39:56 +02:00
|
|
|
}
|
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"
|