From aaad0ab6ddbd93a58bb0940074a4f3c59634bb1d Mon Sep 17 00:00:00 2001 From: Matt Hill Date: Wed, 11 Mar 2015 22:26:10 -0400 Subject: [PATCH] Added CMakeLists.txt for Python binding --- src/bindings/python/CMakeLists.txt | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 src/bindings/python/CMakeLists.txt diff --git a/src/bindings/python/CMakeLists.txt b/src/bindings/python/CMakeLists.txt new file mode 100644 index 0000000..3aa7ec8 --- /dev/null +++ b/src/bindings/python/CMakeLists.txt @@ -0,0 +1,17 @@ + +cmake_minimum_required (VERSION 2.6) + + +include_directories(../../openalpr/) + + +set(python_source_files + openalprpy.cpp +) + + +add_library(openalprpy SHARED ${python_source_files}) + + +TARGET_LINK_LIBRARIES(openalprpy openalpr) +