Update Makefile

Fixes Preferences not found error on Alderis.
This commit is contained in:
aric3435 (INACTIVE)
2024-10-09 17:07:52 -05:00
committed by GitHub
parent 452f9f59bd
commit f02840a31b

View File

@@ -1,5 +1,6 @@
TARGET = iphone:clang:16.5:14.0 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 ARCHS = arm64
MODULES = jailed MODULES = jailed
FINALPACKAGE = 1 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_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_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_FRAMEWORKS = UIKit Security
YTLitePlus_USE_FISHHOOK = 0
include $(THEOS)/makefiles/common.mk include $(THEOS)/makefiles/common.mk
include $(THEOS_MAKE_PATH)/tweak.mk include $(THEOS_MAKE_PATH)/tweak.mk