mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-18 16:27:34 +01:00
20 lines
373 B
Makefile
20 lines
373 B
Makefile
TOOLCHAIN = apple
|
|
EXE = bin
|
|
|
|
APPLE_PLATFORM ?= ios
|
|
APPLE_PLATFORM_MIN_VERSION = 8.0
|
|
EPSILON_TELEMETRY ?= 1
|
|
|
|
ifeq ($(APPLE_PLATFORM),ios)
|
|
ARCHS ?= arm64 armv7
|
|
UI_REQUIRED_CAPABILITIES += armv7
|
|
else ifeq ($(APPLE_PLATFORM),ios-simulator)
|
|
ARCHS = x86_64
|
|
endif
|
|
|
|
BUILD_DIR := $(subst $(TARGET),$(APPLE_PLATFORM),$(BUILD_DIR))
|
|
|
|
ifdef ARCH
|
|
BUILD_DIR := $(BUILD_DIR)/$(ARCH)
|
|
endif
|