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
473 B
16 lines
473 B
6 years ago
|
cmake_minimum_required(VERSION 3.6)
|
||
|
|
||
|
set(target mixed_sample)
|
||
|
project(${target} CXX)
|
||
|
|
||
|
set(ANDROID_OPENCV_COMPONENTS "opencv_java" CACHE STRING "")
|
||
|
message(STATUS "ANDROID_ABI=${ANDROID_ABI}")
|
||
|
find_package(OpenCV REQUIRED COMPONENTS ${ANDROID_OPENCV_COMPONENTS})
|
||
|
|
||
|
file(GLOB srcs *.cpp *.c)
|
||
|
file(GLOB hdrs *.hpp *.h)
|
||
|
|
||
|
include_directories("${CMAKE_CURRENT_LIST_DIR}")
|
||
|
add_library(${target} SHARED ${srcs} ${hdrs})
|
||
|
target_link_libraries(${target} ${ANDROID_OPENCV_COMPONENTS})
|