Fixed multithreading library in CMakeLists

This commit is contained in:
Matt Hill
2014-02-20 13:48:26 -06:00
parent ce907f5c34
commit 0386bba299
2 changed files with 15 additions and 5 deletions

View File

@@ -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
) )
@@ -35,4 +36,13 @@ TARGET_LINK_LIBRARIES(prepcharsfortraining
${OpenCV_LIBS} ${OpenCV_LIBS}
) )
ADD_EXECUTABLE( findnegatives findnegatives.cpp )
TARGET_LINK_LIBRARIES(findnegatives
openalpr
support
tinythread
${OpenCV_LIBS}
tesseract
)

View File

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