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.
21 lines
500 B
21 lines
500 B
LOCAL_PATH := $(call my-dir) |
|
|
|
include $(CLEAR_VARS) |
|
|
|
OPENCV_CAMERA_MODULES:=off |
|
|
|
include ../includeOpenCV.mk |
|
ifeq ("$(wildcard $(OPENCV_MK_PATH))","") |
|
#try to load OpenCV.mk from default install location |
|
include $(TOOLCHAIN_PREBUILT_ROOT)/user/share/OpenCV/OpenCV.mk |
|
else |
|
include $(OPENCV_MK_PATH) |
|
endif |
|
|
|
LOCAL_SRC_FILES := DetectionBaseTracker.cpp |
|
LOCAL_C_INCLUDES := $(LOCAL_PATH) |
|
LOCAL_LDLIBS += -llog -ldl |
|
|
|
LOCAL_MODULE := detection_base_tacker |
|
|
|
include $(BUILD_SHARED_LIBRARY) |