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.
8 lines
394 B
8 lines
394 B
# 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() |
|
|
|
set(HAVE_ANDROID_MEDIANDK ${HAVE_ANDROID_MEDIANDK} PARENT_SCOPE)
|
|
|