Skip to content

Commit

Permalink
Fixed bug 4335 - Android NDK build error
Browse files Browse the repository at this point in the history
dmuratshin

LOCAL_SRC_FILES shouldn't use $(LOCAL_PATH)
  • Loading branch information
slouken committed Oct 28, 2018
1 parent e381a15 commit df89abb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Android.mk
Expand Up @@ -102,7 +102,7 @@ include $(CLEAR_VARS)

LOCAL_CPPFLAGS += -std=c++11

LOCAL_SRC_FILES := $(LOCAL_PATH)/src/hidapi/android/hid.cpp
LOCAL_SRC_FILES := src/hidapi/android/hid.cpp

LOCAL_MODULE := libhidapi
LOCAL_LDLIBS := -llog
Expand Down

0 comments on commit df89abb

Please sign in to comment.