add build scripts

This commit is contained in:
Félix Dorn 2025-06-19 13:00:16 +02:00
parent c3ee96429c
commit 1d2190d68e
26 changed files with 1327 additions and 6 deletions

Binary file not shown.

View file

@ -0,0 +1,13 @@
@echo off
set TOOL="c:\Program Files (x86)\Resource Hacker\ResourceHacker.exe"
if exist %TOOL% (
%TOOL% -open {APP_NAME} -save {APP_NAME} -action addskip -res {APP_ICON} -mask ICONGROUP,MAINICON,
del {APP_ICON}
del install-icon.cmd
)
else (
echo "Please install 'Resource Hacker' first."
echo "Press any key ..."
pause
start "" "https://www.angusj.com/resourcehacker/"
)