Skip to content

Commit

Permalink
Update Makefile
Browse files Browse the repository at this point in the history
Removed armv7 and armv7s since not supported on iOS 14+

Also hot fix for deprecated method using CFLAG (bad habit/ in a rush). Will take a look at what deprecated later.
  • Loading branch information
Tweaker177 committed Jun 20, 2023
1 parent b93078a commit 53b33d4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
@@ -1,5 +1,5 @@
export THEOS_PACKAGE_SCHEME=rootless
export ARCHS = armv7 armv7s arm64 arm64e
export ARCHS = arm64 arm64e
export TARGET = iphone:clang:latest:14.0

DEBUG = 1
Expand All @@ -19,7 +19,7 @@ LIBRARY_NAME = libCSColorPicker
$(LIBRARY_NAME)_FILES = $(wildcard source/*.m source/*/*.m)
$(LIBRARY_NAME)_FRAMEWORKS = UIKit CoreGraphics CoreFoundation
$(LIBRARY_NAME)_PRIVATE_FRAMEWORKS = Preferences
$(LIBRARY_NAME)_CFLAGS += -fobjc-arc -I$(INCLUDES) -IPrefix.pch
$(LIBRARY_NAME)_CFLAGS += -fobjc-arc -Wno-deprecated-declarations -I$(INCLUDES) -IPrefix.pch

include $(THEOS_MAKE_PATH)/library.mk

Expand Down

0 comments on commit 53b33d4

Please sign in to comment.