From 530cd3ad8f3fc6d7361b837b39c4bfb01d897c4c Mon Sep 17 00:00:00 2001 From: Matt Hill Date: Wed, 11 Mar 2015 22:30:15 -0400 Subject: [PATCH] Added install to Python/Java libs --- src/bindings/java/CMakeLists.txt | 2 ++ src/bindings/python/CMakeLists.txt | 2 ++ 2 files changed, 4 insertions(+) diff --git a/src/bindings/java/CMakeLists.txt b/src/bindings/java/CMakeLists.txt index e831c6d..52cd716 100644 --- a/src/bindings/java/CMakeLists.txt +++ b/src/bindings/java/CMakeLists.txt @@ -21,3 +21,5 @@ add_library(openalprjni SHARED ${jni_source_files}) TARGET_LINK_LIBRARIES(openalprjni openalpr) + +install (TARGETS openalprjni DESTINATION ${CMAKE_INSTALL_PREFIX}/lib) \ No newline at end of file diff --git a/src/bindings/python/CMakeLists.txt b/src/bindings/python/CMakeLists.txt index 3aa7ec8..50226bf 100644 --- a/src/bindings/python/CMakeLists.txt +++ b/src/bindings/python/CMakeLists.txt @@ -15,3 +15,5 @@ add_library(openalprpy SHARED ${python_source_files}) TARGET_LINK_LIBRARIES(openalprpy openalpr) + +install (TARGETS openalprpy DESTINATION ${CMAKE_INSTALL_PREFIX}/lib) \ No newline at end of file