mirror of
https://github.com/Stremio/stremio-shell-ng.git
synced 2026-01-11 22:40:32 +00:00
12 lines
297 B
Batchfile
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"
|