####################################################
# This file contains general project configuration #
####################################################

_local_path := $(realpath $(dir $(lastword $(MAKEFILE_LIST))))

include $(_local_path)/../multibuild/sdk.mk

# Any custom CONFIG_* configuration could be defined here.
#
# CONFIG_A := a
# CONFIG_B := b
#
# ifeq ($(CONFIG_A),a)
#   CONFIG_B := c
# endif

ifneq ($(CONFIG_RELEASE),y)
  CONFIG_DEBUG := y 
endif

# Possible options: armeabi, arm64-v8a
ifeq ($(CONFIG_APP_ABI),)
  CONFIG_APP_ABI := armeabi arm64-v8a
endif

# Global config that defines verbosity of output
TEESDK_VERBOSE := n
