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
439 B
17 lines
439 B
set(sample example-tutorial-4-opencl) |
|
|
|
if(BUILD_FAT_JAVA_LIB) |
|
set(native_deps opencv_java) |
|
else() |
|
set(native_deps opencv_imgproc) |
|
endif() |
|
|
|
add_android_project(${sample} "${CMAKE_CURRENT_SOURCE_DIR}" |
|
LIBRARY_DEPS "${OPENCV_ANDROID_LIB_DIR}" |
|
SDK_TARGET 21 "${ANDROID_SDK_TARGET}" |
|
NATIVE_DEPS ${native_deps} -lGLESv2 -lEGL |
|
COPY_LIBS YES |
|
) |
|
if(TARGET ${sample}) |
|
add_dependencies(opencv_android_examples ${sample}) |
|
endif()
|
|
|