add build scripts
This commit is contained in:
parent
c3ee96429c
commit
1d2190d68e
26 changed files with 1327 additions and 6 deletions
13
scripts/_app_scaffolds/win/install-icon.cmd
Normal file
13
scripts/_app_scaffolds/win/install-icon.cmd
Normal 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/"
|
||||
)
|
Loading…
Add table
Add a link
Reference in a new issue