[DEV] android error define base sdk folder

This commit is contained in:
Edouard DUPIN 2013-03-12 22:45:36 +01:00
parent 50b0424408
commit 7674fedbe9

View File

@ -6,11 +6,11 @@
############################################################################### ###############################################################################
# Define SDK and NDK folder for Android compilation tools and packager tools : # Define SDK and NDK folder for Android compilation tools and packager tools :
ifeq ("$(PROJECT_NDK)","") ifndef PROJECT_NDK
PROJECT_NDK:=$(call fullpath,$(PROJECT_PATH)/../android/ndk/) PROJECT_NDK:=$(call fullpath,$(PROJECT_PATH)/../android/ndk/)
$(info Auto define android NDK project to : $(PROJECT_NDK)) $(info Auto define android NDK project to : $(PROJECT_NDK))
endif endif
ifeq ("$(PROJECT_NDK)","") ifndef PROJECT_SDK
PROJECT_SDK:=$(call fullpath,$(PROJECT_PATH)/../android/sdk/) PROJECT_SDK:=$(call fullpath,$(PROJECT_PATH)/../android/sdk/)
$(info Auto define Android SDK project to : $(PROJECT_SDK)) $(info Auto define Android SDK project to : $(PROJECT_SDK))
endif endif