mirror of
https://github.com/libretro/RetroArch.git
synced 2024-11-24 08:30:16 +00:00
(Vulkan) Add JNI files for libretro-test-vulkan
This commit is contained in:
parent
ccd41e2a94
commit
4dddcb2969
25
cores/libretro-test-vulkan/jni/Android.mk
Normal file
25
cores/libretro-test-vulkan/jni/Android.mk
Normal file
@ -0,0 +1,25 @@
|
||||
LOCAL_PATH := $(call my-dir)
|
||||
|
||||
include $(CLEAR_VARS)
|
||||
|
||||
LOCAL_MODULE := retro-test-vulkan
|
||||
|
||||
ifeq ($(TARGET_ARCH),arm)
|
||||
LOCAL_CFLAGS += -DANDROID_ARM
|
||||
LOCAL_ARM_MODE := arm
|
||||
endif
|
||||
|
||||
ifeq ($(TARGET_ARCH),x86)
|
||||
LOCAL_CFLAGS += -DANDROID_X86
|
||||
endif
|
||||
|
||||
ifeq ($(TARGET_ARCH),mips)
|
||||
LOCAL_CFLAGS += -DANDROID_MIPS
|
||||
endif
|
||||
|
||||
LOCAL_SRC_FILES += ../libretro-test.c \
|
||||
../../../libretro-common/vulkan/vulkan_symbol_wrapper.c
|
||||
LOCAL_CFLAGS += -O2 -Wall -std=gnu99 -ffast-math -DGLES -DHAVE_OPENGLES2 -I../../../libretro-common/include -I../../../gfx/include
|
||||
|
||||
include $(BUILD_SHARED_LIBRARY)
|
||||
|
3
cores/libretro-test-vulkan/jni/Application.mk
Normal file
3
cores/libretro-test-vulkan/jni/Application.mk
Normal file
@ -0,0 +1,3 @@
|
||||
APP_ABI := armeabi-v7a arm64-v8a x86 x86_64 mips mips64
|
||||
APP_PLATFORM := android-9
|
||||
|
Loading…
Reference in New Issue
Block a user