config.mk 979 Bytes
Newer Older
Yizhi Liu committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
#-------------------------------------------------------------------------------
#  Template configuration for compiling
#
#  If you want to change the configuration, please use the following
#  steps. Assume you are on the root directory. First copy the this
#  file so that any local changes will be ignored by git
#
#  cp make/config.mk .
#
#  Next modify the according entries, and then compile by
#
#  ./build.sh
#
#-------------------------------------------------------------------------------
APP_ABI = all

17
APP_PLATFORM = android-24
Yizhi Liu committed
18 19 20 21

# whether enable OpenCL during compile
USE_OPENCL = 0

22 23 24 25 26 27 28 29
# whether to enable Vulkan during compile
USE_VULKAN = 0

ifeq ($(USE_VULKAN), 1)
  # Statically linking vulkan requires API Level 24 or higher
  APP_PLATFORM = android-24
endif

Yizhi Liu committed
30 31 32 33 34
# the additional include headers you want to add, e.g., SDK_PATH/adrenosdk/Development/Inc
ADD_C_INCLUDES =

# the additional link libs you want to add, e.g., ANDROID_LIB_PATH/libOpenCL.so
ADD_LDLIBS =