-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwindoz.bat
37 lines (36 loc) · 907 Bytes
/
windoz.bat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
@echo off
echo %DATE% %TIME%
goto BUILD
echo.
echo Notes about how to run BANDMAP on Windoze 10
echo.
echo Already should have almost everything we need installed already
pip install -r requirements.txt
echo.
echo Also need a temp directory:
md ..\tmp
echo.
echo Run the script under python:
bandmap.py
:BUILD
echo.
echo Compile - works on both windoz and linux:
echo This takes a long time ...
echo.
pyinstaller --onefile bandmap.py
copy ..\data\cty.plist dist
copy ..\data\nodes.plist dist
copy Release_Notes.txt dist
echo.
echo Run the compiled version:
dist\bandmap.exe
echo.
echo On Linux:
echo "cp ../data/cty.plist dist"
echo dist\bandmap.exe
echo.
echo Run Inno Setup Compiler and follow the prompts to create an installer.
echo This installer works on Windoz 10 and Bottles.
echo.
echo %DATE% %TIME%
echo.