summaryrefslogtreecommitdiffstats
path: root/src/zstd/programs/windres/generate_res.bat
blob: 7ff9aef5102fcb2a58449ad00e7bca3c08e8893f (plain)
1
2
3
4
5
6
7
8
9
10
11
@echo off
REM http://stackoverflow.com/questions/708238/how-do-i-add-an-icon-to-a-mingw-gcc-compiled-executable

where /q windres.exe
IF ERRORLEVEL 1 (
    ECHO The windres.exe is missing. Ensure it is installed and placed in your PATH.
    EXIT /B
) ELSE (
    windres.exe -I ../lib -I windres -i windres/zstd.rc -O coff -F pe-x86-64 -o windres/zstd64.res
    windres.exe -I ../lib -I windres -i windres/zstd.rc -O coff -F pe-i386 -o windres/zstd32.res
)