mirror of https://github.com/opencv/opencv.git
parent
b5ecb1d32d
commit
fc085d9dbd
4 changed files with 75 additions and 1 deletions
@ -0,0 +1,39 @@ |
|||||||
|
project(libopencv_info) |
||||||
|
if(NOT ANDROID_PACKAGE_RELEASE) |
||||||
|
set(ANDROID_PACKAGE_RELEASE 1) |
||||||
|
endif() |
||||||
|
|
||||||
|
if(NOT ANDROID_PACKAGE_PLATFORM) |
||||||
|
if(ARMEABI_V7A) |
||||||
|
if(NEON) |
||||||
|
set(ANDROID_PACKAGE_PLATFORM armv7a_neon) |
||||||
|
else() |
||||||
|
set(ANDROID_PACKAGE_PLATFORM armv7a) |
||||||
|
endif() |
||||||
|
elseif(ARMEABI_V6) |
||||||
|
set(ANDROID_PACKAGE_PLATFORM armv6) |
||||||
|
elseif(ARMEABI) |
||||||
|
set(ANDROID_PACKAGE_PLATFORM armv5) |
||||||
|
elseif(X86) |
||||||
|
set(ANDROID_PACKAGE_PLATFORM x86) |
||||||
|
elseif(MIPS) |
||||||
|
set(ANDROID_PACKAGE_PLATFORM mips) |
||||||
|
else() |
||||||
|
message(ERROR "Can not automatically determine the value for ANDROID_PACKAGE_PLATFORM") |
||||||
|
endif() |
||||||
|
endif() |
||||||
|
|
||||||
|
add_definitions(-DANDROID_PACKAGE_RELEASE=${ANDROID_PACKAGE_RELEASE} -DANDROID_PACKAGE_PLATFORM="${ANDROID_PACKAGE_PLATFORM}") |
||||||
|
|
||||||
|
include_directories(jni/BinderComponent jni/include "${OpenCV_SOURCE_DIR}/modules/core/include") |
||||||
|
|
||||||
|
add_library(opencv_info SHARED info.c) |
||||||
|
|
||||||
|
set_target_properties(${the_module} PROPERTIES |
||||||
|
ARCHIVE_OUTPUT_DIRECTORY ${LIBRARY_OUTPUT_PATH} |
||||||
|
RUNTIME_OUTPUT_DIRECTORY ${EXECUTABLE_OUTPUT_PATH} |
||||||
|
INSTALL_NAME_DIR lib |
||||||
|
) |
||||||
|
|
||||||
|
get_filename_component(lib_name "opencv_info" NAME) |
||||||
|
install(FILES "${LIBRARY_OUTPUT_PATH}/${lib_name}" DESTINATION ${OPENCV_LIB_INSTALL_PATH} COMPONENT main) |
@ -0,0 +1,31 @@ |
|||||||
|
#include "opencv2/core/version.hpp" |
||||||
|
#include <jni.h> |
||||||
|
|
||||||
|
const char* GetPackageName(void); |
||||||
|
const char* GetRevision(void); |
||||||
|
const char* GetLibraryList(void); |
||||||
|
JNIEXPORT jstring JNICALL Java_org_opencv_android_StaticHelper_getLibraryList(JNIEnv *, jclass); |
||||||
|
|
||||||
|
#define PACKAGE_NAME "org.opencv.lib_v" CVAUX_STR(CV_MAJOR_VERSION) CVAUX_STR(CV_MINOR_VERSION) "_" ANDROID_PACKAGE_PLATFORM |
||||||
|
#define PACKAGE_REVISION CVAUX_STR(CV_SUBMINOR_VERSION) CVAUX_STR(ANDROID_PACKAGE_RELEASE) |
||||||
|
|
||||||
|
const char* GetPackageName(void) |
||||||
|
{ |
||||||
|
return PACKAGE_NAME; |
||||||
|
} |
||||||
|
|
||||||
|
const char* GetRevision(void) |
||||||
|
{ |
||||||
|
return PACKAGE_REVISION; |
||||||
|
} |
||||||
|
|
||||||
|
const char* GetLibraryList(void) |
||||||
|
{ |
||||||
|
return ""; |
||||||
|
} |
||||||
|
|
||||||
|
JNIEXPORT jstring JNICALL Java_org_opencv_android_StaticHelper_getLibraryList(JNIEnv * env, jclass clazz) |
||||||
|
{ |
||||||
|
(void)clazz; |
||||||
|
return (*env)->NewStringUTF(env, GetLibraryList()); |
||||||
|
} |
Loading…
Reference in new issue