Advertisement
Guest User

Untitled

a guest
Feb 5th, 2014
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.38 KB | None | 0 0
  1. Android.mk
  2. LOCAL_PATH := $(call my-dir)
  3.  
  4. include $(CLEAR_VARS)
  5.  
  6. include ../../sdk/native/jni/OpenCV.mk
  7.  
  8. LOCAL_MODULE    := mixed_sample
  9. LOCAL_SRC_FILES := jni_part.cpp
  10. LOCAL_LDLIBS +=  -llog -ldl
  11. APP_OPTIM := debug
  12. include $(BUILD_SHARED_LIBRARY)
  13.  
  14. Application.mk :
  15. APP_STL := gnustl_static
  16. APP_CPPFLAGS := -frtti -fexceptions
  17. APP_ABI := armeabi-v7a
  18. APP_PLATFORM := android-9
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement