crds_analyzer/build.cmd

15 lines
284 B
Batchfile
Raw Normal View History

2021-07-16 09:37:22 -07:00
@echo off
2021-07-13 23:25:37 -07:00
2021-07-16 09:37:22 -07:00
set compileUI=0
set build=0
2021-07-13 23:25:37 -07:00
2021-07-16 09:37:22 -07:00
FOR %%A IN (%*) DO (
IF "%%A"=="-compileUI" set compileUI=1
IF "%%A"=="-build" set build=1
)
2021-07-13 23:25:37 -07:00
2021-07-16 09:37:22 -07:00
if %compileUI%==1 pyuic5.exe -x .\ui\mainwin.ui -o mainwin.py
2021-07-13 23:25:37 -07:00
2021-07-16 09:37:22 -07:00
if %build%==1 pyinstaller --onefile --windowed --icon=favicon.ico app.py
exit