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.
7 lines
328 B
7 lines
328 B
6 years ago
|
# if(ANDROID AND ANDROID_NATIVE_API_LEVEL GREATER_EQUAL 21) <-- would be nicer but requires CMake 3.7 or later
|
||
|
if(ANDROID AND ANDROID_NATIVE_API_LEVEL GREATER 20)
|
||
|
set(HAVE_ANDROID_MEDIANDK TRUE)
|
||
|
set(libs "-landroid -llog -lmediandk")
|
||
|
ocv_add_external_target(android_mediandk "" "${libs}" "HAVE_ANDROID_MEDIANDK")
|
||
|
endif()
|