-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathAndroid.mk
More file actions
31 lines (23 loc) · 739 Bytes
/
Android.mk
File metadata and controls
31 lines (23 loc) · 739 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)
LOCAL_MODULE := CAGE
LOCAL_C_INCLUDES := $(LOCAL_PATH) \
../SDL2_mixer/ \
../SDL2_image/
LOCAL_SRC_FILES := src/animate.c \
src/cage.c \
src/easing.c \
src/font.c \
src/geometry.c \
src/image.c \
src/keyboard.c \
src/mouse.c \
src/screen.c \
src/sound.c \
src/sprite.c \
src/timeline.c
LOCAL_LDLIBS :=
LOCAL_STATIC_LIBRARIES :=
LOCAL_SHARED_LIBRARIES := SDL2 SDL2_image SDL2_mixer
LOCAL_EXPORT_C_INCLUDES += $(LOCAL_C_INCLUDES)
include $(BUILD_SHARED_LIBRARY)