update make-standalone (untested)

This commit is contained in:
Ian Burgwin
2020-07-22 20:46:14 -07:00
parent 449ee90311
commit d176d1f0ee
2 changed files with 8 additions and 5 deletions

View File

@@ -77,7 +77,7 @@ Install the dependencies, plus cx-Freeze. In a virtual environment, the specific
pip install cx-freeze -r requirements-win32.txt pip install cx-freeze -r requirements-win32.txt
``` ```
Run `make-standalone.bat`. This will run cxfreeze and make a standalone version in `dist-standlone`, and copy `TaskbarLib.tlb` and `save3ds_fuse.exe` to it. Run `make-standalone.bat`. This will run cxfreeze and make a standalone version at `dist\custom-install-standalone.zip`
## License/Credits ## License/Credits
[save3ds by wwylele](https://github.com/wwylele/save3ds) is used to interact with the Title Database (details in `bin/README`). [save3ds by wwylele](https://github.com/wwylele/save3ds) is used to interact with the Title Database (details in `bin/README`).

View File

@@ -1,4 +1,7 @@
cxfreeze ci-gui.py --target-dir=dist-standalone --base-name=Win32GUI mkdir build
mkdir dist-standalone\bin cxfreeze ci-gui.py --target-dir=build\custom-install-standalone --base-name=Win32GUI
copy TaskbarLib.tlb dist-standalone mkdir build\custom-install-standalone\bin
copy bin\win32\save3ds_fuse.exe dist-standalone\bin copy TaskbarLib.tlb build\custom-install-standalone
copy bin\win32\save3ds_fuse.exe build\custom-install-standalone\bin
copy bin\README build\custom-install-standalone\bin
python -m zipfile -c dist\custom-install-standalone.zip build\custom-install-standalone