-
Notifications
You must be signed in to change notification settings - Fork 128
/
Makefile
18 lines (14 loc) · 975 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
export THEOS_DEVICE_IP = 192.168.1.3
export THEOS_DEVICE_PORT = 22
export ARCHS = armv7 arm64
export TARGET = iphone:clang:latest:6.0
include theos/makefiles/common.mk
TWEAK_NAME = WeChatRobotForExample
WeChatRobotForExample_FILES = Tweak.xm Model/CMessageWrap-WCRAdditions.xm Model/MicroMessengerAppDelegate-WCRAdditions.xm Model/KxSMBProvider.m Model/WCRDBManager.m Model/WCRGeneralCommander.m Model/WCRGroupCommander.m Model/WCRMessageCommander.m Model/WCRPreferences.m Model/WCRSearchManager.m Model/WCRTempGenerator.m Model/WCRUserCommander.m Model/WCRUtils.m Model/WCRVoiceProcessor.m
WeChatRobotForExample_FRAMEWORKS = UIKit
WeChatRobotForExample_OBJ_FILES = sambalibs/libsmbclient.a sambalibs/libtalloc.a sambalibs/libtdb.a sambalibs/libtevent.a sambalibs/libwbclient.a
WeChatRobotForExample_LDFLAGS = -lsqlite3.0 -lz -lresolv -liconv
WeChatRobotForExample_CFLAGS = -fobjc-arc
include $(THEOS_MAKE_PATH)/tweak.mk
after-install::
install.exec "killall -9 WeChat"