mirror of
https://github.com/DarkMatterCore/nxdumptool.git
synced 2024-11-30 06:02:11 +00:00
24 lines
No EOL
572 B
Batchfile
24 lines
No EOL
572 B
Batchfile
@echo off
|
|
|
|
set scriptdir=%~dp0
|
|
set scriptdir=%scriptdir:~0,-1%
|
|
|
|
set venvname=standalone
|
|
set venvscripts=%scriptdir%\%venvname%\Scripts
|
|
|
|
set venvpython=%venvscripts%\python.exe
|
|
|
|
cd /D "%scriptdir%"
|
|
|
|
python -m venv "%venvname%"
|
|
|
|
"%venvpython%" -m pip install --upgrade nuitka -r requirements-win32.txt
|
|
|
|
"%venvpython%" -m nuitka --standalone --onefile --deployment --disable-console --windows-icon-from-ico=nxdt.ico --enable-plugin=tk-inter nxdt_host.py
|
|
|
|
rmdir /s /q nxdt_host.build
|
|
rmdir /s /q nxdt_host.dist
|
|
rmdir /s /q nxdt_host.onefile-build
|
|
rmdir /s /q standalone
|
|
|
|
pause |