2016-07-11 11:14:58 -04:00
|
|
|
-- Option to allow copying the DLL file to a custom folder after build
|
|
|
|
newoption {
|
|
|
|
trigger = "copy-to",
|
|
|
|
description = "Optional, copy the DLL to a custom folder after build, define the path here if wanted.",
|
|
|
|
value = "PATH"
|
|
|
|
}
|
|
|
|
|
|
|
|
newoption {
|
|
|
|
trigger = "no-new-structure",
|
|
|
|
description = "Do not use new virtual path structure (separating headers and source files)."
|
|
|
|
}
|
|
|
|
|
2016-08-10 11:09:19 -04:00
|
|
|
newoption {
|
|
|
|
trigger = "copy-pdb",
|
|
|
|
description = "Copy debug information for binaries as well to the path given via --copy-to."
|
|
|
|
}
|
|
|
|
|
2016-08-13 13:20:27 -04:00
|
|
|
newoption {
|
2016-08-14 09:17:30 -04:00
|
|
|
trigger = "ac-debug-detections",
|
2016-08-13 13:20:27 -04:00
|
|
|
description = "Log anticheat detections."
|
|
|
|
}
|
|
|
|
|
|
|
|
newoption {
|
2016-08-14 09:17:30 -04:00
|
|
|
trigger = "ac-debug-load-library",
|
2016-08-13 13:20:27 -04:00
|
|
|
description = "Log libraries that get loaded."
|
|
|
|
}
|
|
|
|
|
|
|
|
newoption {
|
|
|
|
trigger = "force-unit-tests",
|
|
|
|
description = "Always compile unit tests."
|
|
|
|
}
|
|
|
|
|
2016-07-11 11:14:58 -04:00
|
|
|
newaction {
|
|
|
|
trigger = "version",
|
|
|
|
description = "Returns the version string for the current commit of the source code.",
|
|
|
|
onWorkspace = function(wks)
|
|
|
|
-- get revision number via git
|
|
|
|
local proc = assert(io.popen("git rev-list --count HEAD", "r"))
|
|
|
|
local revNumber = assert(proc:read('*a')):gsub("%s+", "")
|
|
|
|
proc:close()
|
|
|
|
|
|
|
|
print(revNumber)
|
|
|
|
os.exit(0)
|
|
|
|
end
|
|
|
|
}
|
|
|
|
|
|
|
|
newaction {
|
|
|
|
trigger = "generate-buildinfo",
|
|
|
|
description = "Sets up build information file like version.h.",
|
|
|
|
onWorkspace = function(wks)
|
|
|
|
-- get revision number via git
|
|
|
|
local proc = assert(io.popen("git rev-list --count HEAD", "r"))
|
|
|
|
local revNumber = assert(proc:read('*a')):gsub("%s+", "")
|
|
|
|
proc:close()
|
|
|
|
|
|
|
|
-- get whether this is a clean revision (no uncommitted changes)
|
|
|
|
local proc = assert(io.popen("git status --porcelain", "r"))
|
|
|
|
local revClean = 1
|
|
|
|
local revCleanSuffix = ""
|
|
|
|
if assert(proc:read('*a')) ~= "" then
|
|
|
|
revClean = 0
|
|
|
|
revCleanSuffix = " (unclean)"
|
|
|
|
end
|
|
|
|
proc:close()
|
|
|
|
|
|
|
|
-- get old version number from version.hpp if any
|
|
|
|
local oldRevNumber = "(none)"
|
|
|
|
local oldRevClean = 1
|
|
|
|
local oldRevCleanSuffix = ""
|
|
|
|
local oldVersionHeader = io.open(wks.location .. "/src/version.hpp", "r")
|
|
|
|
if oldVersionHeader ~=nil then
|
|
|
|
local oldVersionHeaderContent = assert(oldVersionHeader:read('*a'))
|
|
|
|
oldRevNumber = string.match(oldVersionHeaderContent, "#define REVISION (%d+)")
|
|
|
|
if oldRevNumber == nil then
|
|
|
|
-- old version.hpp format?
|
|
|
|
oldRevNumber = "(none)"
|
|
|
|
end
|
|
|
|
oldRevClean = string.match(oldVersionHeaderContent, "#define REVISION_CLEAN (%d+)")
|
|
|
|
if oldRevClean == nil then
|
|
|
|
-- old version.hpp format?
|
|
|
|
oldRevClean = 1
|
|
|
|
elseif oldRevClean ~= "1" then
|
|
|
|
oldRevClean = 0
|
|
|
|
else
|
|
|
|
oldRevClean = 1
|
|
|
|
end
|
|
|
|
end
|
|
|
|
if oldRevClean == 0 then
|
|
|
|
oldRevCleanSuffix = " (unclean)"
|
|
|
|
end
|
|
|
|
|
|
|
|
-- generate version.hpp with a revision number if not equal
|
|
|
|
if oldRevNumber ~= revNumber or oldRevClean ~= revClean then
|
|
|
|
print ("Update " .. oldRevNumber .. oldRevCleanSuffix .. " -> " .. revNumber .. revCleanSuffix)
|
|
|
|
local versionHeader = assert(io.open(wks.location .. "/src/version.hpp", "w"))
|
|
|
|
versionHeader:write("/*\n")
|
|
|
|
versionHeader:write(" * Automatically generated by premake5.\n")
|
|
|
|
versionHeader:write(" * Do not touch, you fucking moron!\n")
|
|
|
|
versionHeader:write(" */\n")
|
|
|
|
versionHeader:write("\n")
|
|
|
|
versionHeader:write("#define REVISION " .. revNumber .. "\n")
|
|
|
|
versionHeader:write("#define REVISION_CLEAN " .. revClean .. "\n")
|
|
|
|
versionHeader:close()
|
|
|
|
end
|
|
|
|
end
|
|
|
|
}
|
|
|
|
|
2016-08-13 13:24:02 -04:00
|
|
|
depsBasePath = "./deps"
|
|
|
|
|
|
|
|
require "premake/fmt"
|
|
|
|
require "premake/json11"
|
|
|
|
require "premake/libtomcrypt"
|
|
|
|
require "premake/libtommath"
|
|
|
|
require "premake/mongoose"
|
|
|
|
require "premake/pdcurses"
|
|
|
|
require "premake/protobuf"
|
|
|
|
require "premake/winksignals"
|
|
|
|
require "premake/zlib"
|
|
|
|
|
|
|
|
fmt.setup
|
|
|
|
{
|
|
|
|
source = path.join(depsBasePath, "fmt"),
|
|
|
|
}
|
|
|
|
json11.setup
|
|
|
|
{
|
|
|
|
source = path.join(depsBasePath, "json11"),
|
|
|
|
}
|
|
|
|
libtomcrypt.setup
|
|
|
|
{
|
|
|
|
defines = {
|
|
|
|
"LTC_NO_FAST",
|
|
|
|
"LTC_NO_PROTOTYPES",
|
|
|
|
"LTC_NO_RSA_BLINDING",
|
|
|
|
},
|
|
|
|
source = path.join(depsBasePath, "libtomcrypt"),
|
|
|
|
}
|
|
|
|
libtommath.setup
|
|
|
|
{
|
|
|
|
defines = {
|
|
|
|
"LTM_DESC",
|
|
|
|
},
|
|
|
|
source = path.join(depsBasePath, "libtommath"),
|
|
|
|
}
|
|
|
|
mongoose.setup
|
|
|
|
{
|
|
|
|
source = path.join(depsBasePath, "mongoose"),
|
|
|
|
}
|
|
|
|
pdcurses.setup
|
|
|
|
{
|
|
|
|
source = path.join(depsBasePath, "pdcurses"),
|
|
|
|
}
|
|
|
|
protobuf.setup
|
|
|
|
{
|
|
|
|
source = path.join(depsBasePath, "protobuf"),
|
|
|
|
}
|
|
|
|
winksignals.setup
|
|
|
|
{
|
|
|
|
source = path.join(depsBasePath, "Wink-Signals"),
|
|
|
|
}
|
|
|
|
zlib.setup
|
|
|
|
{
|
|
|
|
defines = {
|
|
|
|
"ZLIB_CONST",
|
|
|
|
},
|
|
|
|
source = path.join(depsBasePath, "zlib"),
|
|
|
|
}
|
|
|
|
|
2016-07-11 11:14:58 -04:00
|
|
|
workspace "iw4x"
|
|
|
|
location "./build"
|
|
|
|
objdir "%{wks.location}/obj"
|
|
|
|
targetdir "%{wks.location}/bin/%{cfg.buildcfg}"
|
|
|
|
configurations { "Debug", "DebugStatic", "Release", "ReleaseStatic" }
|
|
|
|
architecture "x32"
|
|
|
|
platforms "x86"
|
|
|
|
|
|
|
|
-- VS 2015 toolset only
|
|
|
|
toolset "msc-140"
|
|
|
|
|
|
|
|
configuration "windows"
|
|
|
|
defines { "_WINDOWS", "WIN32" }
|
|
|
|
|
|
|
|
configuration "Release*"
|
|
|
|
defines { "NDEBUG" }
|
|
|
|
flags { "MultiProcessorCompile", "Symbols", "LinkTimeOptimization", "No64BitChecks" }
|
|
|
|
optimize "Full"
|
|
|
|
|
|
|
|
configuration "Debug*"
|
|
|
|
defines { "DEBUG", "_DEBUG" }
|
|
|
|
flags { "MultiProcessorCompile", "Symbols", "No64BitChecks" }
|
|
|
|
optimize "Debug"
|
|
|
|
|
|
|
|
configuration "*Static"
|
|
|
|
flags { "StaticRuntime" }
|
|
|
|
|
|
|
|
project "iw4x"
|
|
|
|
kind "SharedLib"
|
|
|
|
language "C++"
|
|
|
|
files {
|
|
|
|
"./src/**.rc",
|
|
|
|
"./src/**.hpp",
|
|
|
|
"./src/**.cpp",
|
|
|
|
"./src/**.proto",
|
|
|
|
}
|
|
|
|
includedirs {
|
|
|
|
"%{prj.location}/src",
|
|
|
|
"./src"
|
|
|
|
}
|
|
|
|
resincludedirs {
|
|
|
|
"$(ProjectDir)src" -- fix for VS IDE
|
|
|
|
}
|
|
|
|
|
2016-08-13 13:20:27 -04:00
|
|
|
-- Debug flags
|
2016-08-14 09:17:30 -04:00
|
|
|
if _OPTIONS["ac-debug-detections"] then
|
2016-08-13 13:20:27 -04:00
|
|
|
defines { "DEBUG_DETECTIONS" }
|
|
|
|
end
|
2016-08-14 09:17:30 -04:00
|
|
|
if _OPTIONS["ac-debug-load-library"] then
|
2016-08-13 13:20:27 -04:00
|
|
|
defines { "DEBUG_LOAD_LIBRARY" }
|
|
|
|
end
|
|
|
|
if _OPTIONS["force-unit-tests"] then
|
|
|
|
defines { "FORCE_UNIT_TESTS" }
|
|
|
|
end
|
|
|
|
|
2016-07-11 11:14:58 -04:00
|
|
|
-- Pre-compiled header
|
|
|
|
pchheader "STDInclude.hpp" -- must be exactly same as used in #include directives
|
|
|
|
pchsource "src/STDInclude.cpp" -- real path
|
|
|
|
buildoptions { "/Zm200" }
|
|
|
|
|
|
|
|
-- Dependency libraries
|
2016-08-13 13:24:02 -04:00
|
|
|
fmt.import()
|
|
|
|
json11.import()
|
|
|
|
libtomcrypt.import()
|
|
|
|
libtommath.import()
|
|
|
|
mongoose.import()
|
|
|
|
pdcurses.import()
|
|
|
|
protobuf.import()
|
|
|
|
winksignals.import()
|
|
|
|
zlib.import()
|
|
|
|
|
2016-07-11 11:14:58 -04:00
|
|
|
-- fix vpaths for protobuf sources
|
2016-08-13 13:24:02 -04:00
|
|
|
vpaths
|
2016-07-11 11:14:58 -04:00
|
|
|
{
|
|
|
|
["*"] = { "./src/**" },
|
|
|
|
["Proto/Generated"] = { "**.pb.*" }, -- meh.
|
|
|
|
}
|
|
|
|
|
|
|
|
-- Virtual paths
|
|
|
|
if not _OPTIONS["no-new-structure"] then
|
2016-08-13 13:24:02 -04:00
|
|
|
vpaths
|
2016-07-11 11:14:58 -04:00
|
|
|
{
|
|
|
|
["Headers/*"] = { "./src/**.hpp" },
|
|
|
|
["Sources/*"] = { "./src/**.cpp" },
|
|
|
|
["Resource/*"] = { "./src/**.rc" },
|
|
|
|
["Proto/Definitions/*"] = { "./src/Proto/**.proto" },
|
|
|
|
["Proto/Generated/*"] = { "**.pb.*" }, -- meh.
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2016-08-13 13:24:02 -04:00
|
|
|
vpaths
|
|
|
|
{
|
2016-07-11 11:14:58 -04:00
|
|
|
["Docs/*"] = { "**.txt","**.md" },
|
|
|
|
}
|
2016-08-13 13:24:02 -04:00
|
|
|
|
2016-07-11 11:14:58 -04:00
|
|
|
-- Pre-build
|
2016-08-13 13:24:02 -04:00
|
|
|
prebuildcommands
|
2016-07-11 11:14:58 -04:00
|
|
|
{
|
|
|
|
"cd %{_MAIN_SCRIPT_DIR}",
|
2016-08-13 13:24:02 -04:00
|
|
|
"tools\\premake5 generate-buildinfo",
|
2016-07-11 11:14:58 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
-- Post-build
|
|
|
|
if _OPTIONS["copy-to"] then
|
|
|
|
saneCopyToPath = string.gsub(_OPTIONS["copy-to"] .. "\\", "\\\\", "\\")
|
|
|
|
postbuildcommands {
|
2016-08-10 11:08:27 -04:00
|
|
|
"if not exist \"" .. saneCopyToPath .. "\" mkdir \"" .. saneCopyToPath .. "\"",
|
|
|
|
"copy /y \"$(TargetDir)*.dll\" \"" .. saneCopyToPath .. "\"",
|
2016-07-11 11:14:58 -04:00
|
|
|
}
|
2016-08-10 11:09:19 -04:00
|
|
|
|
|
|
|
if _OPTIONS["copy-pdb"] then
|
|
|
|
postbuildcommands {
|
|
|
|
"copy /y \"$(TargetDir)*.pdb\" \"" .. saneCopyToPath .. "\"",
|
|
|
|
}
|
|
|
|
end
|
2016-07-11 11:14:58 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
-- Specific configurations
|
|
|
|
flags { "UndefinedIdentifiers", "ExtraWarnings" }
|
|
|
|
|
|
|
|
configuration "Release*"
|
|
|
|
flags { "FatalCompileWarnings" }
|
|
|
|
configuration {}
|
|
|
|
|
|
|
|
-- Generate source code from protobuf definitions
|
2016-08-13 13:24:02 -04:00
|
|
|
filter "files:**.pb.*"
|
|
|
|
flags {
|
|
|
|
"NoPCH",
|
|
|
|
}
|
|
|
|
buildoptions {
|
|
|
|
"/wd4100", -- "Unused formal parameter"
|
|
|
|
"/wd4389", -- "Signed/Unsigned mismatch"
|
|
|
|
"/wd6011", -- "Dereferencing NULL pointer"
|
|
|
|
"/wd4125", -- "Decimal digit terminates octal escape sequence"
|
|
|
|
}
|
|
|
|
defines {
|
|
|
|
"_SCL_SECURE_NO_WARNINGS",
|
|
|
|
}
|
|
|
|
filter {}
|
2016-07-11 11:14:58 -04:00
|
|
|
rules { "ProtobufCompiler" }
|
|
|
|
|
|
|
|
-- Workaround: Consume protobuf generated source files
|
|
|
|
matches = os.matchfiles(path.join("src/Proto/**.proto"))
|
|
|
|
for i, srcPath in ipairs(matches) do
|
|
|
|
basename = path.getbasename(srcPath)
|
2016-08-13 13:24:02 -04:00
|
|
|
files
|
2016-07-11 11:14:58 -04:00
|
|
|
{
|
|
|
|
string.format("%%{prj.location}/src/proto/%s.pb.h", basename),
|
|
|
|
string.format("%%{prj.location}/src/proto/%s.pb.cc", basename),
|
|
|
|
}
|
|
|
|
end
|
2016-08-13 13:24:02 -04:00
|
|
|
includedirs
|
|
|
|
{
|
|
|
|
"%{prj.location}/src/proto",
|
2016-07-11 11:14:58 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
group "External dependencies"
|
2016-08-13 13:24:02 -04:00
|
|
|
fmt.project()
|
|
|
|
json11.project()
|
|
|
|
libtomcrypt.project()
|
|
|
|
libtommath.project()
|
|
|
|
mongoose.project()
|
|
|
|
pdcurses.project()
|
|
|
|
winksignals.project()
|
|
|
|
zlib.project()
|
|
|
|
protobuf.project()
|
2016-07-11 11:14:58 -04:00
|
|
|
|
|
|
|
rule "ProtobufCompiler"
|
|
|
|
display "Protobuf compiler"
|
|
|
|
location "./build"
|
|
|
|
fileExtension ".proto"
|
|
|
|
buildmessage "Compiling %(Identity) with protoc..."
|
|
|
|
buildcommands {
|
|
|
|
'@echo off',
|
|
|
|
'path "$(SolutionDir)\\..\\tools"',
|
|
|
|
'if not exist "$(ProjectDir)\\src\\proto" mkdir "$(ProjectDir)\\src\\proto"',
|
|
|
|
'protoc --error_format=msvs -I=%(RelativeDir) --cpp_out=src\\proto %(Identity)',
|
|
|
|
}
|
|
|
|
buildoutputs {
|
|
|
|
'$(ProjectDir)\\src\\proto\\%(Filename).pb.cc',
|
|
|
|
'$(ProjectDir)\\src\\proto\\%(Filename).pb.h',
|
|
|
|
}
|