Home | History | Annotate | Download | only in ndk_helper
      1 LOCAL_PATH:= $(call my-dir)
      2 
      3 $(warning ndk_helper is no longer maintained in the NDK. This copy is left for \
      4           compatibility purposes only. For an up to date copy, see \
      5           https://github.com/googlesamples/android-ndk/tree/master/teapots/common/ndk_helper)
      6 
      7 include $(CLEAR_VARS)
      8 
      9 LOCAL_MODULE:= ndk_helper
     10 LOCAL_SRC_FILES:= JNIHelper.cpp interpolator.cpp tapCamera.cpp gestureDetector.cpp perfMonitor.cpp vecmath.cpp GLContext.cpp shader.cpp gl3stub.c
     11 
     12 LOCAL_EXPORT_C_INCLUDES := $(LOCAL_PATH)
     13 LOCAL_EXPORT_LDLIBS    := -llog -landroid -lEGL -lGLESv2
     14 
     15 LOCAL_STATIC_LIBRARIES := cpufeatures android_native_app_glue
     16 
     17 include $(BUILD_STATIC_LIBRARY)
     18 
     19 #$(call import-module,android/native_app_glue)
     20 #$(call import-module,android/cpufeatures)
     21