mirror of
https://github.com/kerberos-io/openalpr-base.git
synced 2025-10-09 00:30:06 +08:00
50 lines
871 B
CMake
50 lines
871 B
CMake
|
|
target_link_libraries(openalpr)
|
|
|
|
|
|
|
|
ADD_EXECUTABLE( sortstate sortstate.cpp )
|
|
TARGET_LINK_LIBRARIES(sortstate
|
|
openalpr-static
|
|
support
|
|
${OpenCV_LIBS}
|
|
${Tesseract_LIBS}
|
|
)
|
|
|
|
ADD_EXECUTABLE( classifychars classifychars.cpp )
|
|
TARGET_LINK_LIBRARIES(classifychars
|
|
openalpr-static
|
|
support
|
|
${OpenCV_LIBS}
|
|
${Tesseract_LIBS}
|
|
)
|
|
|
|
|
|
ADD_EXECUTABLE(benchmark
|
|
benchmark/benchmark.cpp
|
|
benchmark/benchmark_utils.cpp
|
|
benchmark/endtoendtest.cpp
|
|
)
|
|
TARGET_LINK_LIBRARIES(benchmark
|
|
openalpr-static
|
|
support
|
|
pthread
|
|
${OpenCV_LIBS}
|
|
${Tesseract_LIBS}
|
|
)
|
|
|
|
|
|
ADD_EXECUTABLE( prepcharsfortraining prepcharsfortraining.cpp )
|
|
TARGET_LINK_LIBRARIES(prepcharsfortraining
|
|
support
|
|
${OpenCV_LIBS}
|
|
)
|
|
|
|
|
|
ADD_EXECUTABLE( tagplates tagplates.cpp )
|
|
TARGET_LINK_LIBRARIES(tagplates
|
|
support
|
|
${OpenCV_LIBS}
|
|
)
|
|
|