mirror of
https://github.com/kerberos-io/openalpr-base.git
synced 2025-10-06 22:02:44 +08:00
Fixed multithreading library in CMakeLists
This commit is contained in:
@@ -24,6 +24,7 @@ ADD_EXECUTABLE( benchmark benchmark.cpp )
|
|||||||
TARGET_LINK_LIBRARIES(benchmark
|
TARGET_LINK_LIBRARIES(benchmark
|
||||||
openalpr
|
openalpr
|
||||||
support
|
support
|
||||||
|
tinythread
|
||||||
${OpenCV_LIBS}
|
${OpenCV_LIBS}
|
||||||
tesseract
|
tesseract
|
||||||
)
|
)
|
||||||
@@ -36,3 +37,12 @@ TARGET_LINK_LIBRARIES(prepcharsfortraining
|
|||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
ADD_EXECUTABLE( findnegatives findnegatives.cpp )
|
||||||
|
TARGET_LINK_LIBRARIES(findnegatives
|
||||||
|
openalpr
|
||||||
|
support
|
||||||
|
tinythread
|
||||||
|
${OpenCV_LIBS}
|
||||||
|
tesseract
|
||||||
|
)
|
@@ -26,10 +26,10 @@ set(lpr_source_files
|
|||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
add_library(openalpr ${lpr_source_files})
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
add_subdirectory(simpleini)
|
add_subdirectory(simpleini)
|
||||||
add_subdirectory(support)
|
add_subdirectory(support)
|
||||||
add_subdirectory(tinythread)
|
add_subdirectory(tinythread)
|
||||||
|
|
||||||
|
|
||||||
|
add_library(openalpr ${lpr_source_files})
|
Reference in New Issue
Block a user