-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathMakefile
More file actions
24 lines (18 loc) · 1.73 KB
/
Copy pathMakefile
File metadata and controls
24 lines (18 loc) · 1.73 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
export TARGET := iphone:clang:latest:15.0
export ARCHS = arm64 arm64e
export FINALPACKAGE = 1
export THEOS_PACKAGE_SCHEME = rootless
export GO_EASY_ON_ME = 1
include $(THEOS)/makefiles/common.mk
APPLICATION_NAME = EZCompleteUI
EZCompleteUI_FILES = main.m AppDelegate.m helpers.m ViewController+EZTopButtons.m ViewController+EZKeepAwake.m ViewController.m EZModelPickerViewController.m EZImageSettingsViewController.m EZAttachMenuViewController.m SidewaysScrollView.m ChatHistoryViewController.m SettingsViewController.m MemoriesViewController.m EZKeyVault.m SupportRequestViewController.m TextToSpeechViewController.m ElevenLabsCloneViewController.m iCarousel.m ViewController+SidewaysTopRow.m ViewController+EZTitleResolver.m UIViewController+EZViewDidLayoutSwizzle.m WaveformView.m EZAuthManager.m EZEntitlementManager.m LoginViewController.m HelperLogViewController.m SystemLogViewController.m EZBubbleCell.m EZSystemCell.m EZCodeBlockCell.m EZCoinStoreViewController.m EZCoinPotView.m EZPhotoGalleryViewController.m EZImageGridCell.m EZCoinLedgerViewController.m EZCoinUsageViewController.m BRGameModel.m BrainRotViewController.m BRGameView.m EZTermsAcceptanceViewController.m EZPoliciesViewController.m
EZCompleteUI_FRAMEWORKS = UIKit Foundation AVFoundation Speech QuickLook \
UniformTypeIdentifiers PDFKit QuickLookThumbnailing Security PhotosUI QuartzCore SafariServices
EZCompleteUI_CFLAGS = -fobjc-arc -Wno-deprecated -Wno-deprecated-declarations -Wno-error \
-fmodules-cache-path=$(shell pwd)/.theos/module-cache
EZCompleteUI_CODESIGN_FLAGS = -Sent.plist
EZCompleteUI_INFOPLIST_FILE = Resources/Info.plist
EZCompleteUI_USER = mobile
EZCompleteUI_GROUP = mobile
EZCompleteUI_INSTALL_PATH = /Applications
include $(THEOS_MAKE_PATH)/application.mk