Android.mk 374 B

1234567891011121314151617
  1. LOCAL_PATH:= $(call my-dir)
  2. include $(CLEAR_VARS)
  3. LOCAL_MODULE_TAGS := optional
  4. # Only compile source java files in this apk.
  5. LOCAL_SRC_FILES := $(call all-java-files-under, src)
  6. LOCAL_PACKAGE_NAME := GL2CameraEye
  7. LOCAL_SDK_VERSION := current
  8. include $(BUILD_PACKAGE)
  9. # Use the following include to make our test apk.
  10. include $(call all-makefiles-under,$(LOCAL_PATH))