mirror of
https://github.com/DarkMatterCore/nxdumptool.git
synced 2024-11-09 20:21:45 +00:00
a016ba92db
* Added text files with required module information, which can be used with pip. * Added a batch file to build a ZIP archive with a standalone copy of the script, which can be used to run it under Windows systems without Python. * Further tweaked the way the progress bar window works. * Debug messages are no longer printed to the log. * Rearranged some parts of the code.
10 lines
239 B
Batchfile
10 lines
239 B
Batchfile
mkdir nxdt_host
|
|
|
|
cxfreeze nxdt_host.py -s --base-name=Win32GUI --target-dir=nxdt_host --icon=nxdt.ico
|
|
|
|
copy ..\README.md nxdt_host
|
|
copy ..\LICENSE.md nxdt_host
|
|
|
|
python -m zipfile -c nxdt_host.zip nxdt_host
|
|
|
|
rmdir /s /q nxdt_host
|