2015-12-30 20:44:04 -05:00
|
|
|
-- Option to allow copying the DLL file to a custom folder after build
|
|
|
|
newoption {
|
|
|
|
trigger = "copy-to",
|
2015-12-30 21:58:16 -05:00
|
|
|
description = "Optional, copy the DLL to a custom folder after build, define the path here if wanted.",
|
|
|
|
value = "PATH"
|
2015-12-30 20:44:04 -05:00
|
|
|
}
|
|
|
|
|
2015-12-30 21:59:33 -05:00
|
|
|
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 old version number from version.hpp if any
|
|
|
|
local oldRevNumber = -1
|
|
|
|
local oldVersionHeader = io.open(wks.location .. "/version.hpp", "r")
|
|
|
|
if oldVersionHeader ~=nil then
|
|
|
|
local oldVersionHeaderContent = assert(oldVersionHeader:read('*a'))
|
|
|
|
oldRevNumber = string.match(oldVersionHeaderContent, "#define REVISION (%d+)")
|
|
|
|
end
|
|
|
|
|
|
|
|
-- generate version.hpp with a revision number if not equal
|
|
|
|
if oldRevNumber ~= revNumber then
|
|
|
|
print ("Update " .. oldRevNumber .. " -> " .. revNumber)
|
|
|
|
local versionHeader = assert(io.open(wks.location .. "/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:close()
|
|
|
|
end
|
|
|
|
end
|
|
|
|
}
|
|
|
|
|
2015-12-28 20:52:31 -05:00
|
|
|
solution "iw4x"
|
|
|
|
location ("./build")
|
|
|
|
configurations { "Normal" }
|
|
|
|
|
|
|
|
project "iw4x"
|
|
|
|
kind "SharedLib"
|
|
|
|
language "C++"
|
2015-12-29 08:46:17 -05:00
|
|
|
files { "./src/**.hpp", "./src/**.cpp" }
|
2015-12-30 21:59:33 -05:00
|
|
|
includedirs { "%{prj.location}" }
|
2015-12-30 20:44:51 -05:00
|
|
|
toolset "msc" -- only support Microsoft's compiler
|
2015-12-28 20:52:31 -05:00
|
|
|
|
|
|
|
configuration "Normal"
|
|
|
|
defines { "NDEBUG" }
|
|
|
|
flags { "Optimize", "MultiProcessorCompile", "Symbols" }
|
2015-12-30 20:44:04 -05:00
|
|
|
|
2015-12-30 21:58:43 -05:00
|
|
|
vpaths {
|
|
|
|
["Headers/*"] = "src/**.hpp",
|
|
|
|
["Sources/*"] = {"src/**.cpp"},
|
|
|
|
["Docs/*"] = {"**.txt","**.md"}
|
|
|
|
}
|
|
|
|
|
2015-12-30 21:59:33 -05:00
|
|
|
prebuildcommands {
|
|
|
|
"cd %{_MAIN_SCRIPT_DIR}",
|
|
|
|
"premake5 generate-buildinfo"
|
|
|
|
}
|
|
|
|
|
2015-12-30 20:44:04 -05:00
|
|
|
if _OPTIONS["copy-to"] then
|
|
|
|
saneCopyToPath = string.gsub(_OPTIONS["copy-to"] .. "\\", "\\\\", "\\")
|
|
|
|
postbuildcommands {
|
|
|
|
"copy /y \"$(TargetPath)\" \"" .. saneCopyToPath .. "\""
|
|
|
|
}
|
|
|
|
end
|