blob: ac38f041e6e6051c281db0c68873a3ad96bb60de (
plain)
1
2
3
4
5
6
7
8
|
:: Create version_info.txt
python utils\create_version_file.py
:: Build the service binary with clean
pyinstaller --onefile --noconsole --version-file=ogclient-version-info.txt --clean ogclient
:: Build the systray binary with clean
pyinstaller --onefile --noconsole --version-file=systray-version-info.txt --clean systray\ogclient-systray
|