mirror of https://github.com/opencv/opencv.git
Open Source Computer Vision Library
https://opencv.org/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
330 B
16 lines
330 B
LOCAL_PATH := $(call my-dir) |
|
|
|
include $(CLEAR_VARS) |
|
|
|
OPENCV_CAMERA_MODULES := off |
|
include OpenCV.mk |
|
|
|
LOCAL_MODULE := opencv_java |
|
|
|
MY_PREFIX := $(LOCAL_PATH) |
|
MY_SOURCES := $(wildcard $(MY_PREFIX)/*.cpp) |
|
LOCAL_SRC_FILES := $(MY_SOURCES:$(MY_PREFIX)%=%) |
|
|
|
LOCAL_LDLIBS += -llog -ldl -ljnigraphics |
|
|
|
include $(BUILD_SHARED_LIBRARY)
|
|
|