Fix compiled binaries launch
This commit is contained in:
parent
d4092b46df
commit
85f1c3776f
8 changed files with 22 additions and 22 deletions
|
@ -5,12 +5,12 @@ mkdir output
|
|||
mkdir output\bin
|
||||
python -m pip install -r requirements.txt || goto :exit
|
||||
python -m pip install Nuitka || goto :exit
|
||||
python -m nuitka --jobs=%NUMBER_OF_PROCESSORS% --output-dir=output --follow-imports --onefile --output-filename=vnrecode vnrecode\__main__.py || goto :exit
|
||||
python -m nuitka --jobs=%NUMBER_OF_PROCESSORS% --output-dir=output --follow-imports --onefile --output-filename=vnrecode vnrecode || goto :exit
|
||||
xcopy vnrecode\vnrecode.toml output\bin /Y
|
||||
move /Y output\vnrecode.exe output\bin
|
||||
python -m nuitka --jobs=%NUMBER_OF_PROCESSORS% --output-dir=output --follow-imports --onefile --output-filename=unrenapk unrenapk\__main__.py || goto :exit
|
||||
python -m nuitka --jobs=%NUMBER_OF_PROCESSORS% --output-dir=output --follow-imports --onefile --output-filename=unrenapk unrenapk || goto :exit
|
||||
move /Y output\unrenapk.exe output\bin
|
||||
python -m nuitka --jobs=%NUMBER_OF_PROCESSORS% --output-dir=output --follow-imports --onefile --output-filename=vnds2renpy vnds2renpy/__main__.py || goto :exit
|
||||
python -m nuitka --jobs=%NUMBER_OF_PROCESSORS% --output-dir=output --follow-imports --onefile --output-filename=vnds2renpy vnds2renpy || goto :exit
|
||||
move /Y output\vnds2renpy.exe output\bin
|
||||
echo "Done! You can get binaries into output\bin directory"
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue