-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathMakefile
More file actions
26 lines (20 loc) · 811 Bytes
/
Makefile
File metadata and controls
26 lines (20 loc) · 811 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# 评论区语音hook,能下能换,就是玩儿
# @cookieodd | github.com/cookieodd | t.me/cookieodd
ARCHS = arm64
TARGET := iphone:clang:latest:15.0
include $(THEOS)/makefiles/common.mk
LIBRARY_NAME = AWECommentAudioTweak
AWECommentAudioTweak_FILES = Tweak/Tweak.x \
Tweak/AWECADownloadManager.m \
Tweak/AWECAAudioReplacer.m \
Tweak/AWECAAudioPickerController.m \
Tweak/AWECAUtils.m \
Tweak/AWECATTSManager.m \
Tweak/AWECATTSConfigController.m \
Tweak/AWECATTSController.m \
Tweak/AWECATTSVoiceListController.m
AWECommentAudioTweak_CFLAGS = -fobjc-arc
AWECommentAudioTweak_LDFLAGS = -Xlinker -not_for_dyld_shared_cache
AWECommentAudioTweak_FRAMEWORKS = UIKit Foundation AVFoundation CoreAudio UniformTypeIdentifiers
AWECommentAudioTweak_LIBRARIES = objc
include $(THEOS_MAKE_PATH)/library.mk