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