Add support to include the build number into the windows installer

This commit is contained in:
Luis Ángel San Martín
2019-08-18 21:25:22 +02:00
parent b4c50ad0b4
commit 678f9fae77
2 changed files with 3 additions and 3 deletions

View File

@ -56,6 +56,6 @@ if "%1"=="x86" (
type build_installer.iss | findstr /v ArchitecturesInstallIn64BitMode | findstr /v ArchitecturesAllowed > build_installer.iss
)
iscc /DVERSION=%VERSION% /DPLATFORM=%1 /DCOMPRESSED_ARCHIVE_BACKEND=%2 build_installer.iss
iscc /DVERSION=%VERSION% /DPLATFORM=%1 /DCOMPRESSED_ARCHIVE_BACKEND=%2 /DBUILD_NUMBER=%3 build_installer.iss
cd ..