mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-14 21:37:52 -07:00
84467d2ff1
Current master (d17db57b9d4354752e0af42f5f33007a42ef2906) because Android support was added after the current release (0.8.0-rc1).
20 lines
349 B
Makefile
20 lines
349 B
Makefile
LOCAL_PATH:= $(call my-dir)
|
|
|
|
HIDAPI_ROOT_REL:= ../..
|
|
HIDAPI_ROOT_ABS:= $(LOCAL_PATH)/../..
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_SRC_FILES := \
|
|
$(HIDAPI_ROOT_REL)/libusb/hid.c
|
|
|
|
LOCAL_C_INCLUDES += \
|
|
$(HIDAPI_ROOT_ABS)/hidapi \
|
|
$(HIDAPI_ROOT_ABS)/android
|
|
|
|
LOCAL_SHARED_LIBRARIES := libusb1.0
|
|
|
|
LOCAL_MODULE := libhidapi
|
|
|
|
include $(BUILD_SHARED_LIBRARY)
|