diff --git a/Makefile b/Makefile index 4921c45..4f05550 100644 --- a/Makefile +++ b/Makefile @@ -3,7 +3,7 @@ source = *.cpp ./lua/*.c windows: @echo off - g++ $(source) -Wall -Os -ffunction-sections -fdata-sections -Wl,--gc-sections -lmingw32 -lSDL2main -lSDL2 -lSDL2_mixer -mwindows -o "$(executable).exe" + g++ $(source) icon.res -Wall -Os -ffunction-sections -fdata-sections -Wl,--gc-sections -lmingw32 -lSDL2main -lSDL2 -lSDL2_mixer -mwindows -o "$(executable).exe" strip -s -R .comment -R .gnu.version --strip-unneeded "$(executable).exe" windows_debug: diff --git a/icon.res b/icon.res new file mode 100644 index 0000000..ef8b6a6 Binary files /dev/null and b/icon.res differ