blob: 3317c427629fc588aa3d6a84f7720d99b5ed99cf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#!/usr/bin/python3
import argparse
from datetime import datetime
import getpass
import subprocess
parser = argparse.ArgumentParser()
parser.add_argument("--devel", action="store_true")
args = parser.parse_args()
with open("build/ZAPD/BuildInfo.cpp", "w+") as buildFile:
# Get commit hash from git
# If git fails due to a missing .git directory, a default label will be used instead.
try:
label = subprocess.check_output(["git", "describe", "--always"]).strip().decode("utf-8")
except:
label = "GIT_NOT_FOUND"
now = datetime.now()
if args.devel:
label += " ~ Development version"
buildFile.write("extern const char gBuildHash[] = \"" + label + "\";\n")
#buildFile.write("extern const char gBuildDate[] = \"" + now.strftime("%Y-%m-%d %H:%M:%S") + "\";\n")
|