10 lines
638 B
PowerShell
10 lines
638 B
PowerShell
$start_time = Get-Uptime
|
|
python3.8.exe -m nuitka --jobs=24 --mingw64 --lto=no --show-memory --show-progress --output-dir=build/nuitka1 --include-data-dir=./configs=./configs --include-data-dir=./libs/fonts=./libs/fonts --include-data-dir=./textures=./textures --include-data-dir=./libs/pyglet=./pyglet --enable-plugin=numpy --nofollow-import-to=objprint,numpy,pillow,cffi,PIL,pyglet --standalone $args .\DR.py
|
|
$end_time = Get-Uptime
|
|
$out = $end_time.TotalMilliseconds - $start_time.TotalMilliseconds
|
|
Write-Output $end_time.TotalSeconds $start_time.TotalSeconds $out
|
|
|
|
# --include-data-dir=./libs/pyglet=./pyglet
|
|
# --run
|
|
# --disable-ccache
|