stremio-shell-ng/setup/create_setup.bat
Vladimir Borisov dd15b80f7b Installer fixes
2024-04-17 11:28:23 +03:00

12 lines
297 B
Batchfile

@echo off
set mypath=%~dp0
:: Compile the main executable
if not exist "%mypath%..\target\release\stremio-shell-ng.exe" (
cargo build --release
) else (
echo Main executable is already built
)
:: Compile the installer
"C:\Program Files (x86)\Inno Setup 6\ISCC.exe" "%mypath%Stremio.iss"