15 lines
No EOL
666 B
Batchfile
15 lines
No EOL
666 B
Batchfile
@Echo off
|
|
mkdir output
|
|
mkdir output\bin
|
|
python -m pip install -r FFMpeg-Compressor\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=ffmpeg-comp FFMpeg-Compressor\main.py || goto :exit
|
|
xcopy FFMpeg-Compressor\ffmpeg-comp.toml output\bin
|
|
move output\ffmpeg-comp.exe output\bin
|
|
python -m nuitka --jobs=%NUMBER_OF_PROCESSORS% --output-dir=output --follow-imports --onefile --output-filename=rendroid-unpack RenPy-Android-Unpack\unpack.py || goto :exit
|
|
move output\rendroid-unpack.exe output\bin
|
|
pause
|
|
|
|
:exit
|
|
pause
|
|
exit /b %exitlevel% |