Added CMakeLists.txt for Python binding

This commit is contained in:
Matt Hill
2015-03-11 22:26:10 -04:00
parent a2791acd63
commit aaad0ab6dd

View File

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