mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2024-11-01 16:15:07 -04:00
19 lines
635 B
Python
19 lines
635 B
Python
|
#!/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:
|
||
|
label = subprocess.check_output(["git", "describe", "--always"]).strip().decode("utf-8")
|
||
|
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")
|