summaryrefslogtreecommitdiffstats
path: root/premake5.lua
diff options
context:
space:
mode:
authorwithmorten <morten.with@gmail.com>2021-06-25 19:51:45 +0200
committerGitHub <noreply@github.com>2021-06-25 19:51:45 +0200
commit4bab6d5356fe62c2166dbabc504792a510df7819 (patch)
tree223156c86b9c30d3bd1977684a83f123470b309e /premake5.lua
parentRedo ReadSaveBuf + common.h cleanup (diff)
parentadd no-git-hash option to premake (diff)
downloadre3-4bab6d5356fe62c2166dbabc504792a510df7819.tar
re3-4bab6d5356fe62c2166dbabc504792a510df7819.tar.gz
re3-4bab6d5356fe62c2166dbabc504792a510df7819.tar.bz2
re3-4bab6d5356fe62c2166dbabc504792a510df7819.tar.lz
re3-4bab6d5356fe62c2166dbabc504792a510df7819.tar.xz
re3-4bab6d5356fe62c2166dbabc504792a510df7819.tar.zst
re3-4bab6d5356fe62c2166dbabc504792a510df7819.zip
Diffstat (limited to 'premake5.lua')
-rw-r--r--premake5.lua23
1 files changed, 20 insertions, 3 deletions
diff --git a/premake5.lua b/premake5.lua
index fd59c1f8..973ac05d 100644
--- a/premake5.lua
+++ b/premake5.lua
@@ -28,6 +28,11 @@ newoption {
}
newoption {
+ trigger = "no-git-hash",
+ description = "Don't print git commit hash into binary"
+}
+
+newoption {
trigger = "lto",
description = "Use link time optimization"
}
@@ -253,7 +258,11 @@ project "re3"
files { addSrcFiles("src/vehicles") }
files { addSrcFiles("src/weapons") }
files { addSrcFiles("src/extras") }
- files { "src/extras/GitSHA1.cpp" } -- this won't be in repo in first build
+ if(not _OPTIONS["no-git-hash"]) then
+ files { "src/extras/GitSHA1.cpp" } -- this won't be in repo in first build
+ else
+ removefiles { "src/extras/GitSHA1.cpp" } -- but it will be everytime after
+ end
includedirs { "src" }
includedirs { "src/animation" }
@@ -278,6 +287,10 @@ project "re3"
includedirs { "src/vehicles" }
includedirs { "src/weapons" }
includedirs { "src/extras" }
+
+ if(not _OPTIONS["no-git-hash"]) then
+ defines { "USE_OUR_VERSIONING" }
+ end
if _OPTIONS["with-opus"] then
includedirs { "vendor/ogg/include" }
@@ -318,10 +331,14 @@ project "re3"
-- external librw is dynamic
staticruntime "on"
end
- prebuildcommands { '"%{prj.location}..\\printHash.bat" "%{prj.location}..\\src\\extras\\GitSHA1.cpp"' }
+ if(not _OPTIONS["no-git-hash"]) then
+ prebuildcommands { '"%{prj.location}..\\printHash.bat" "%{prj.location}..\\src\\extras\\GitSHA1.cpp"' }
+ end
filter "platforms:not win*"
- prebuildcommands { '"%{prj.location}/../printHash.sh" "%{prj.location}/../src/extras/GitSHA1.cpp"' }
+ if(not _OPTIONS["no-git-hash"]) then
+ prebuildcommands { '"%{prj.location}/../printHash.sh" "%{prj.location}/../src/extras/GitSHA1.cpp"' }
+ end
filter "platforms:win*glfw*"
staticruntime "off"