Files
zoitechat/win32/spelling/build-spelling.bat
2026-01-05 23:12:38 -07:00

23 lines
901 B
Batchfile

:: run this from a command prompt
:: TODO: change it to LocalAppdata when GLib is updated
@echo off
set DEPS_ROOT=C:\mozilla-build\zoitechat
set SPELLING_DEST=..\build\spelling
rmdir /q /s %SPELLING_DEST%
mkdir %SPELLING_DEST%
xcopy /q /s /i %DEPS_ROOT%\myspell\dicts %SPELLING_DEST%\myspell
cd ..
echo [Setup] > build\spelling\zoitechat-spelling.iss
echo WizardImageFile=%cd%\installer\wizardimage.bmp >> build\spelling\zoitechat-spelling.iss
echo WizardSmallImageFile=%cd%\installer\wizardsmallimage.bmp >> build\spelling\zoitechat-spelling.iss
cd ..\share\icons
echo SetupIconFile=%cd%\zoitechat.ico >> win32\build\spelling\zoitechat-spelling.iss
cd ..\..
type win32\spelling\zoitechat-spelling.skel.iss >> win32\build\spelling\zoitechat-spelling.iss
set PATH=%PROGRAMFILES(X86)%\Inno Setup 5
compil32 /cc win32\build\spelling\zoitechat-spelling.iss
cd win32\spelling
pause