blob: df8642759bfe98ded9130332efa80bd8e914527d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)
LOCAL_MODULE := entityx
LOCAL_MODULE_FILENAME := libentityx
LOCAL_SRC_FILES := \
entityx/Entity.cc \
entityx/Event.cc \
entityx/System.cc \
entityx/help/Pool.cc \
entityx/help/Timer.cc \
LOCAL_C_INCLUDES := $(LOCAL_PATH)
include $(BUILD_STATIC_LIBRARY)
|