MILESTONE define is now bound to the current Git tag name (which is beta).

Subject to.
This commit is contained in:
/dev/urandom 2016-08-17 05:00:12 +02:00
parent c0e3a49234
commit db4f9ad6ec
No known key found for this signature in database
GPG Key ID: 41322B973E0F295E
2 changed files with 19 additions and 2 deletions

View File

@ -1,3 +1,16 @@
-- Quote the given string input as a C string
function cstrquote(value)
result = value:gsub("\\", "\\\\")
result = result:gsub("\"", "\\\"")
result = result:gsub("\n", "\\n")
result = result:gsub("\t", "\\t")
result = result:gsub("\r", "\\r")
result = result:gsub("\a", "\\a")
result = result:gsub("\b", "\\b")
result = "\"" .. result .. "\""
return result
end
-- Option to allow copying the DLL file to a custom folder after build
newoption {
trigger = "copy-to",
@ -54,7 +67,7 @@ newaction {
proc:close()
-- get whether this is a clean revision (no uncommitted changes)
local proc = assert(io.popen("git status --porcelain", "r"))
proc = assert(io.popen("git status --porcelain", "r"))
local revClean = 1
local revCleanSuffix = ""
if assert(proc:read('*a')) ~= "" then
@ -63,6 +76,10 @@ newaction {
end
proc:close()
-- get current tag name (aka milestone for now)
proc = assert(io.popen("git tag"))
local tagName = assert(proc:read('*l'))
-- get old version number from version.hpp if any
local oldRevNumber = "(none)"
local oldRevClean = 1
@ -100,6 +117,7 @@ newaction {
versionHeader:write("\n")
versionHeader:write("#define REVISION " .. revNumber .. "\n")
versionHeader:write("#define REVISION_CLEAN " .. revClean .. "\n")
versionHeader:write("#define MILESTONE " .. cstrquote(tagName) .. "\n")
versionHeader:close()
end
end

View File

@ -123,7 +123,6 @@ using namespace std::literals;
#define BASEGAME "iw4x"
#define CLIENT_CONFIG "iw4x_config.cfg"
#define MILESTONE "beta"
#define REVISION_STR STRINGIZE(REVISION)
#if !REVISION_CLEAN