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.
14 lines
261 B
14 lines
261 B
14 years ago
|
LOCAL_PATH := ${CMAKE_CURRENT_SOURCE_DIR}
|
||
|
|
||
|
include $(CLEAR_VARS)
|
||
|
|
||
|
LOCAL_MODULE := ${android_module_name}
|
||
|
|
||
|
LOCAL_SRC_FILES := ${android_srcs}
|
||
|
|
||
|
LOCAL_CFLAGS := ${android_defs}
|
||
|
|
||
|
LOCAL_C_INCLUDES := ${include_dirs} $(LOCAL_PATH)
|
||
|
|
||
|
include $(BUILD_STATIC_LIBRARY)
|