aboutsummaryrefslogtreecommitdiffstats
path: root/Android.mk
diff options
context:
space:
mode:
authorJeremy Huffman <jeremy@jeremyhuffman.com>2014-07-01 23:09:50 -0400
committerJeremy Huffman <jeremy@jeremyhuffman.com>2014-07-01 23:10:31 -0400
commit7b116a6a2fba0b3cc999ab5b9f3a3c7fca0611a8 (patch)
tree5b1bf3ad8cb2ea6371e027a6a999921ce2fe375f /Android.mk
parent9b2de3c0cc35dd4b7dcdb240b8852325531e70d7 (diff)
add Android make file
Diffstat (limited to 'Android.mk')
-rw-r--r--Android.mk19
1 files changed, 19 insertions, 0 deletions
diff --git a/Android.mk b/Android.mk
new file mode 100644
index 0000000..df86427
--- /dev/null
+++ b/Android.mk
@@ -0,0 +1,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)