diff --git a/Makefile b/Makefile index ebb5990..bafd629 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,6 @@ TARGET = iphone:clang:16.5:14.0 -YTLitePlus_USE_FISHHOOK = 0 +export SDK_PATH = $(THEOS)/sdks/iPhoneOS16.5.sdk/ +export SYSROOT = $(SDK_PATH) ARCHS = arm64 MODULES = jailed FINALPACKAGE = 1 @@ -20,6 +21,7 @@ YTLitePlus_FILES = YTLitePlus.xm $(shell find Source -name '*.xm' -o -name '*.x' YTLitePlus_IPA = ./tmp/Payload/YouTube.app YTLitePlus_CFLAGS = -fobjc-arc -Wno-deprecated-declarations -Wno-unsupported-availability-guard -Wno-unused-but-set-variable -DTWEAK_VERSION=$(PACKAGE_VERSION) $(EXTRA_CFLAGS) YTLitePlus_FRAMEWORKS = UIKit Security +YTLitePlus_USE_FISHHOOK = 0 include $(THEOS)/makefiles/common.mk include $(THEOS_MAKE_PATH)/tweak.mk