| # Licensed to the Apache Software Foundation (ASF) under one |
| # or more contributor license agreements. See the NOTICE file |
| # distributed with this work for additional information |
| # regarding copyright ownership. The ASF licenses this file |
| # to you under the Apache License, Version 2.0 (the |
| # "License"); you may not use this file except in compliance |
| # with the License. You may obtain a copy of the License at |
| # |
| # http://www.apache.org/licenses/LICENSE-2.0 |
| # |
| # Unless required by applicable law or agreed to in writing, |
| # software distributed under the License is distributed on an |
| # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| # KIND, either express or implied. See the License for the |
| # specific language governing permissions and limitations |
| # under the License. |
| |
| #------------------------------------------------------------------------------- |
| # 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 |
| |
| APP_PLATFORM = android-24 |
| |
| # whether enable OpenCL during compile |
| USE_OPENCL = 1 |
| |
| # whether to enable Vulkan during compile |
| USE_VULKAN = 0 |
| |
| # whether to enable contrib sort functions during compile |
| USE_SORT = 1 |
| |
| # whether to eanble contrib random functions during compile |
| USE_RANDOM = 1 |
| |
| ifeq ($(USE_VULKAN), 1) |
| # Statically linking vulkan requires API Level 24 or higher |
| APP_PLATFORM = android-24 |
| endif |
| |
| # 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 = |