Added functionality to build an exe (with upx compression), use within an venv

This commit is contained in:
2026-06-16 16:43:26 +02:00
parent d0fd8e9996
commit e6a8fcb963
6 changed files with 171 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
@echo off
setlocal EnableExtensions
if "%~1"=="" (
"%~dp0pptx-image-compress.exe" -h
) else (
"%~dp0pptx-image-compress.exe" %*
)
``