Android.mk 349 B

1234567891011121314151617181920
  1. LOCAL_PATH:= $(call my-dir)
  2. HIDAPI_ROOT_REL:= ../..
  3. HIDAPI_ROOT_ABS:= $(LOCAL_PATH)/../..
  4. include $(CLEAR_VARS)
  5. LOCAL_SRC_FILES := \
  6. $(HIDAPI_ROOT_REL)/libusb/hid.c
  7. LOCAL_C_INCLUDES += \
  8. $(HIDAPI_ROOT_ABS)/hidapi \
  9. $(HIDAPI_ROOT_ABS)/android
  10. LOCAL_SHARED_LIBRARIES := libusb1.0
  11. LOCAL_MODULE := libhidapi
  12. include $(BUILD_SHARED_LIBRARY)