Skip to content

Commit 3e328a3

Browse files
committed
Add batch file to create .exe
1 parent b490d02 commit 3e328a3

2 files changed

Lines changed: 9 additions & 0 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,4 @@ __pycache__
99
*.pyc
1010
/*.log
1111
/*.hpm
12+
/*.spec

make-exe.bat

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
@ECHO ON
2+
3+
set scriptdir=%~dp0
4+
set builddir=%scriptdir%\build
5+
6+
IF not exist %builddir% (mkdir %builddir%)
7+
8+
python -m PyInstaller --name bin2hpm --onefile --workpath %builddir% --distpath %builddir%\dist %scriptdir%\bin2hpm\__main__.py

0 commit comments

Comments
 (0)