14 lines
No EOL
669 B
Batchfile
14 lines
No EOL
669 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 /Y
|
|
move /Y 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 /Y output\rendroid-unpack.exe output\bin
|
|
|
|
:exit
|
|
pause
|
|
exit /b %exitlevel% |