Home | History | Annotate | Download | only in jmonkeyengine
      1 LOCAL_PATH := $(call my-dir)
      2 include $(CLEAR_VARS)
      3 
      4 LOCAL_SRC_FILES := $(call all-java-files-under, \
      5     engine/src/android \
      6     engine/src/core \
      7     engine/src/core-plugins \
      8     engine/src/ogre)
      9 
     10 LOCAL_MODULE := jmonkeyengine
     11 LOCAL_SDK_VERSION := 9
     12 LOCAL_MODULE_TAGS := optional
     13 
     14 # jMonkeyEngine needs these resources, but they will eventually get
     15 # stripped out even if they're compiled into the jar. You will need
     16 # to duplicate them into your project's assets. See the README for
     17 # more info.
     18 # LOCAL_JAVA_RESOURCE_DIRS := engine/src/core-data
     19 
     20 include $(BUILD_STATIC_JAVA_LIBRARY)
     21