Prefaced utilities with "openalpr-utilities"

This commit is contained in:
Matt Hill
2014-12-15 20:08:43 -05:00
parent bcbd3b51eb
commit 6c31e118e7
2 changed files with 18 additions and 18 deletions

View File

@@ -1,5 +1,5 @@
usr/bin/sortstate-openalpr-utils usr/bin/openalpr-utils-sortstate
usr/bin/classifychars-openalpr-utils usr/bin/openalpr-utils-classifychars
usr/bin/benchmark-openalpr-utils usr/bin/openalpr-utils-benchmark
usr/bin/prepcharsfortraining-openalpr-utils usr/bin/openalpr-utils-prepcharsfortraining
usr/bin/tagplates-openalpr-utils usr/bin/openalpr-utils-tagplates

View File

@@ -1,5 +1,5 @@
ADD_EXECUTABLE( sortstate-openalpr-utils sortstate.cpp ) ADD_EXECUTABLE( openalpr-utils-sortstate sortstate.cpp )
TARGET_LINK_LIBRARIES(sortstate-openalpr-utils TARGET_LINK_LIBRARIES(sortstate-openalpr-utils
openalpr openalpr
support support
@@ -7,7 +7,7 @@ TARGET_LINK_LIBRARIES(sortstate-openalpr-utils
${Tesseract_LIBRARIES} ${Tesseract_LIBRARIES}
) )
ADD_EXECUTABLE( classifychars-openalpr-utils classifychars.cpp ) ADD_EXECUTABLE( openalpr-utils-classifychars classifychars.cpp )
TARGET_LINK_LIBRARIES(classifychars-openalpr-utils TARGET_LINK_LIBRARIES(classifychars-openalpr-utils
openalpr openalpr
support support
@@ -16,12 +16,12 @@ TARGET_LINK_LIBRARIES(classifychars-openalpr-utils
) )
ADD_EXECUTABLE(benchmark-openalpr-utils ADD_EXECUTABLE(openalpr-utils-benchmark
benchmarks/benchmark.cpp benchmarks/benchmark.cpp
benchmarks/benchmark_utils.cpp benchmarks/benchmark_utils.cpp
benchmarks/endtoendtest.cpp benchmarks/endtoendtest.cpp
) )
TARGET_LINK_LIBRARIES(benchmark-openalpr-utils TARGET_LINK_LIBRARIES(openalpr-utils-benchmark
openalpr openalpr
support support
pthread pthread
@@ -30,22 +30,22 @@ TARGET_LINK_LIBRARIES(benchmark-openalpr-utils
) )
ADD_EXECUTABLE( prepcharsfortraining-openalpr-utils prepcharsfortraining.cpp ) ADD_EXECUTABLE( openalpr-utils-prepcharsfortraining prepcharsfortraining.cpp )
TARGET_LINK_LIBRARIES(prepcharsfortraining-openalpr-utils TARGET_LINK_LIBRARIES(openalpr-utils-prepcharsfortraining
support support
${OpenCV_LIBS} ${OpenCV_LIBS}
) )
ADD_EXECUTABLE( tagplates-openalpr-utils tagplates.cpp ) ADD_EXECUTABLE( openalpr-utils-tagplates tagplates.cpp )
TARGET_LINK_LIBRARIES(tagplates-openalpr-utils TARGET_LINK_LIBRARIES(openalpr-utils-tagplates
support support
${OpenCV_LIBS} ${OpenCV_LIBS}
) )
install (TARGETS sortstate-openalpr-utils DESTINATION bin) install (TARGETS openalpr-utils-sortstate DESTINATION bin)
install (TARGETS classifychars-openalpr-utils DESTINATION bin) install (TARGETS openalpr-utils-classifychars DESTINATION bin)
install (TARGETS benchmark-openalpr-utils DESTINATION bin) install (TARGETS openalpr-utils-benchmark DESTINATION bin)
install (TARGETS prepcharsfortraining-openalpr-utils DESTINATION bin) install (TARGETS openalpr-utils-prepcharsfortraining DESTINATION bin)
install (TARGETS tagplates-openalpr-utils DESTINATION bin) install (TARGETS openalpr-utils-tagplates DESTINATION bin)