questzdoom/Projects/AndroidPrebuilt/jni/Android.mk
Simon 7c0534ec41 Gradle changes to support building without dependency on the Meta OpenXR SDK package
the AndroidPrebuilt libopenxr_loader.so is the Android library, rather than an XR vendor specific library, provided solely for linking against.
2023-02-06 21:53:12 +00:00

13 lines
401 B
Makefile

LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)
LOCAL_MODULE := openxr_loader
LOCAL_SRC_FILES := lib$(LOCAL_MODULE).so
# NOTE: This check is added to prevent the following error when running a "make clean" where
# the prebuilt lib may have been deleted: "LOCAL_SRC_FILES points to a missing file"
ifneq (,$(wildcard $(LOCAL_PATH)/$(LOCAL_SRC_FILES)))
include $(PREBUILT_SHARED_LIBRARY)
endif