node-openalpr
Version:
Node.js OpenALPR Bindings
29 lines (18 loc) • 647 B
Plain Text
set(statedetector_source_files
state_detector.cpp
featurematcher.cpp
line_segment.cpp
state_detector_impl.cpp
)
if (WIN32 OR IOS)
add_library(statedetection STATIC ${statedetector_source_files} )
ELSE()
add_library(statedetection SHARED ${statedetector_source_files} )
ENDIF()
set_target_properties(statedetection PROPERTIES SOVERSION ${OPENALPR_MAJOR_VERSION})
TARGET_LINK_LIBRARIES(statedetection
${OpenCV_LIBS}
support
)
install (FILES state_detector.h DESTINATION ${CMAKE_INSTALL_PREFIX}/include)
install (TARGETS statedetection DESTINATION ${CMAKE_INSTALL_PREFIX}/lib)