From 32ed958fd6cfe135f80b59e7310cf529b0d331da Mon Sep 17 00:00:00 2001 From: zx Date: Tue, 27 May 2025 17:22:15 -0400 Subject: [PATCH] let's try this (size optimizations) --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index c762202..57b0cad 100644 --- a/Makefile +++ b/Makefile @@ -7,9 +7,9 @@ include $(THEOS)/makefiles/common.mk TWEAK_NAME = EeveeSpotify EeveeSpotify_FILES = $(shell find Sources/EeveeSpotify -name '*.swift') $(shell find Sources/EeveeSpotifyC -name '*.m' -o -name '*.c' -o -name '*.mm' -o -name '*.cpp') -EeveeSpotify_SWIFTFLAGS = -ISources/EeveeSpotifyC/include +EeveeSpotify_SWIFTFLAGS = -ISources/EeveeSpotifyC/include -Osize EeveeSpotify_EXTRA_FRAMEWORKS = SwiftProtobuf -EeveeSpotify_CFLAGS = -fobjc-arc -ISources/EeveeSpotifyC/include +EeveeSpotify_CFLAGS = -fobjc-arc -ISources/EeveeSpotifyC/include -Os include $(THEOS_MAKE_PATH)/tweak.mk