mirror of
https://github.com/ZaidElkurdi/AssistantPlus.git
synced 2025-01-22 19:40:51 +00:00
552cb41788
- Crash fix when deleting triggers
33 lines
993 B
Makefile
33 lines
993 B
Makefile
include theos/makefiles/common.mk
|
|
|
|
export ARCHS = armv7 armv7s arm64
|
|
export TARGET = iphone:clang:latest:8.0
|
|
export TARGET_IPHONEOS_DEPLOYMENT_VERSION = 8.0
|
|
export SDKVERSION=8.1
|
|
|
|
TWEAK_NAME = Assistant+
|
|
|
|
Assistant+_FILES = AssistantHooks.xm assistantpluspluginmanager/APSession.xm assistantpluspluginmanager/APPluginSnippetViewController.xm
|
|
|
|
Assistant+_FRAMEWORKS = Foundation UIKit CoreFoundation Accounts CoreLocation
|
|
Assistant+_PRIVATE_FRAMEWORKS = AssistantServices SAObjects AppSupport
|
|
Assistant+_LIBRARIES=substrate
|
|
Assistant+_CFLAGS = -fobjc-arc
|
|
|
|
include $(THEOS_MAKE_PATH)/tweak.mk
|
|
|
|
after-stage::
|
|
chmod u+s $(THEOS_STAGING_DIR)/Applications/AssistantPlusApp.app/assistantplus_root_helper
|
|
|
|
after-install::
|
|
install.exec "killall -9 SpringBoard"
|
|
|
|
SUBPROJECTS += assistantpluspluginmanager
|
|
SUBPROJECTS += aplocationdaemon
|
|
SUBPROJECTS += assistantplusapp
|
|
SUBPROJECTS += assistantplus_root_helper
|
|
SUBPROJECTS += customreply
|
|
|
|
SUBPROJECTS += sirisay
|
|
include $(THEOS_MAKE_PATH)/aggregate.mk
|