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) +