-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathMakefile
More file actions
33 lines (25 loc) · 1.39 KB
/
Copy pathMakefile
File metadata and controls
33 lines (25 loc) · 1.39 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
25
26
27
28
29
30
31
32
33
# https://theos.dev
ARCHS = arm64
TARGET = iphone:clang:latest:latest
DEBUG = 0
FINALPACKAGE = 1
FOR_RELEASE = 1
include $(THEOS)/makefiles/common.mk
TWEAK_NAME = KTemp
$(TWEAK_NAME)_FRAMEWORKS = UIKit Foundation Security QuartzCore CoreGraphics CoreText AVFoundation Accelerate GLKit SystemConfiguration GameController
$(TWEAK_NAME)_CFLAGS = -fobjc-arc -Wall -Wno-deprecated-declarations -Wno-unused-variable -Wno-unused-value -Wno-unused-function
$(TWEAK_NAME)_CCFLAGS = -std=c++17 -fno-rtti -DNDEBUG -Wall -Wno-deprecated-declarations -Wno-unused-variable -Wno-unused-value -Wno-unused-function -Wno-writable-strings
$(TWEAK_NAME)_FILES = MenuLoad/ImGuiDrawView.xm \
$(wildcard MenuLoad/*.mm) \
$(wildcard Source/*.mm) \
$(wildcard ImGui/*.mm) \
$(wildcard ImGui/*.cpp) \
$(wildcard utils/Komaru/*.mm) \
$(wildcard utils/Komaru/*.cpp) \
utils/libtitanox/brk_hook/Hook/hook.c \
utils/libtitanox/brk_hook/Hook/mach_excServer.c \
$(wildcard utils/libtitanox/**/*.mm) \
$(wildcard utils/libtitanox/**/*.cpp) \
$(filter-out utils/libtitanox/brk_hook/Hook/hook.c, $(wildcard utils/libtitanox/**/*.c))
include $(THEOS_MAKE_PATH)/tweak.mk
include $(THEOS)/makefiles/aggregate.mk