stremio-shell-ng/setup/create_setup.bat
2024-03-08 10:02:52 +02:00

12 lines
No EOL
296 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"