quakequest/Projects/Android/jni/Application.mk
2021-02-02 22:53:37 +00:00

19 lines
No EOL
640 B
Makefile

# MAKEFILE_LIST specifies the current used Makefiles, of which this is the last
# one. I use that to obtain the Application.mk dir then import the root
# Application.mk.
ROOT_DIR := $(dir $(lastword $(MAKEFILE_LIST)))../../../../..
APP_PLATFORM := android-24
NDK_MODULE_PATH := $(ROOT_DIR)
APP_STL := c++_shared
# Make sure every shared lib includes a .note.gnu.build-id header, for crash reporting
APP_LDFLAGS := -Wl,--build-id
NDK_TOOLCHAIN_VERSION := clang
# ndk-r14 introduced failure for missing dependencies. If 'false', the clean
# step will error as we currently remove prebuilt artifacts on clean.
APP_ALLOW_MISSING_DEPS=true