add support for 7.1 ios SDK

This commit is contained in:
Joshua Warner 2014-04-30 13:23:22 -06:00
parent 6cecfe81d0
commit d37c6ce09b

View File

@ -668,7 +668,8 @@ ifeq ($(platform),darwin)
sdk-dir = $(platform-dir)/Developer/SDKs
ios-version := $(shell \
if test -d $(sdk-dir)/$(target)7.0.sdk; then echo 7.0; \
if test -d $(sdk-dir)/$(target)7.1.sdk; then echo 7.1; \
elif test -d $(sdk-dir)/$(target)7.0.sdk; then echo 7.0; \
elif test -d $(sdk-dir)/$(target)6.1.sdk; then echo 6.1; \
elif test -d $(sdk-dir)/$(target)6.0.sdk; then echo 6.0; \
elif test -d $(sdk-dir)/$(target)5.1.sdk; then echo 5.1; \