Skip to content

Commit

Permalink
Android: fix build Android.mk
Browse files Browse the repository at this point in the history
  • Loading branch information
1bsyl committed Nov 26, 2019
1 parent b431cc2 commit 35ca555
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion Android.mk
Expand Up @@ -57,7 +57,17 @@ include $(CLEAR_VARS)

LOCAL_MODULE := SDL2_mixer

LOCAL_SRC_FILES := $(notdir $(filter-out %/playmus.c %/playwave.c, $(wildcard $(LOCAL_PATH)/src/*.c), $(wildcard $(LOCAL_PATH)/src/codecs/*.c)) \
LOCAL_C_INCLUDES := \
$(LOCAL_PATH)/include \
$(LOCAL_PATH)/src/ \
$(LOCAL_PATH)/src/codecs \


LOCAL_SRC_FILES := \
$(subst $(LOCAL_PATH)/,, \
$(wildcard $(LOCAL_PATH)/src/*.c) \
$(wildcard $(LOCAL_PATH)/src/codecs/*.c) \
)

LOCAL_CFLAGS :=
LOCAL_LDLIBS :=
Expand Down

0 comments on commit 35ca555

Please sign in to comment.