diff --git a/src/bindings/java/CMakeLists.txt b/src/bindings/java/CMakeLists.txt new file mode 100644 index 0000000..e831c6d --- /dev/null +++ b/src/bindings/java/CMakeLists.txt @@ -0,0 +1,23 @@ + +cmake_minimum_required (VERSION 2.6) + + +find_package(JNI REQUIRED) + + +include_directories( + ../../openalpr/ + ${JAVA_INCLUDE_PATH} +) + + +set(jni_source_files + openalprjni.cpp +) + + +add_library(openalprjni SHARED ${jni_source_files}) + + +TARGET_LINK_LIBRARIES(openalprjni openalpr) +