Welcome to mirror list, hosted at ThFree Co, Russian Federation.

paths.mk « sdks - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 57795ede653a9e4b2a2bf58e4bdf9f29c33db714 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17

ifneq ($(or $(ENABLE_IOS),$(ENABLE_MAC),$(ENABLE_MACCAT)),)

CheckXcodeDir=$(or $(and $(wildcard $(1))),$(warning Could not find Xcode in "$(1)"))

ifeq ($(call CheckXcodeDir,$(XCODE_DIR)),)
$(error Could not find Xcode at $(XCODE_DIR))
endif

endif

ifdef ENABLE_ANDROID

ANDROID_TOOLCHAIN_DIR?=$(HOME)/android-toolchain
ANDROID_TOOLCHAIN_CACHE_DIR?=$(HOME)/android-archives

endif