tvos: properly set min supported version (#90)
Some checks failed
Crowdin Translation Integration / create_intl_file (push) Has been cancelled

This commit is contained in:
Eric Warmenhoven 2024-10-16 23:39:26 -04:00 committed by GitHub
parent be1139ec4d
commit b932740e8a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -140,6 +140,9 @@ else ifeq ($(platform), tvos-arm64)
endif
CC = clang -arch arm64 -isysroot $(IOSSDK)
CXX = clang++ -arch arm64 -isysroot $(IOSSDK)
CC += -mappletvos-version-min=11.0
CXX += -mappletvos-version-min=11.0
PLATFORM_DEFINES += -mappletvos-version-min=11.0
# Theos
else ifeq ($(platform), theos_ios)