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.
17 lines
330 B
17 lines
330 B
14 years ago
|
LOCAL_PATH := $(call my-dir)
|
||
|
|
||
|
include $(CLEAR_VARS)
|
||
|
|
||
|
OPENCV_CAMERA_MODULES := off
|
||
|
include OpenCV.mk
|
||
|
|
||
|
LOCAL_MODULE := opencv_java
|
||
14 years ago
|
|
||
|
MY_PREFIX := $(LOCAL_PATH)
|
||
|
MY_SOURCES := $(wildcard $(MY_PREFIX)/*.cpp)
|
||
|
LOCAL_SRC_FILES := $(MY_SOURCES:$(MY_PREFIX)%=%)
|
||
|
|
||
14 years ago
|
LOCAL_LDLIBS += -llog -ldl -ljnigraphics
|
||
|
|
||
|
include $(BUILD_SHARED_LIBRARY)
|