Compiling tinythread as part of the openalpr source (rather than a separate library)

This commit is contained in:
Matt Hill
2014-02-20 17:32:50 -06:00
parent bb39631acb
commit 21acb7084a
3 changed files with 1 additions and 9 deletions

View File

@@ -24,7 +24,6 @@ ADD_EXECUTABLE( benchmark benchmark.cpp )
TARGET_LINK_LIBRARIES(benchmark TARGET_LINK_LIBRARIES(benchmark
openalpr openalpr
support support
tinythread
${OpenCV_LIBS} ${OpenCV_LIBS}
tesseract tesseract
) )
@@ -42,7 +41,6 @@ ADD_EXECUTABLE( findnegatives findnegatives.cpp )
TARGET_LINK_LIBRARIES(findnegatives TARGET_LINK_LIBRARIES(findnegatives
openalpr openalpr
support support
tinythread
${OpenCV_LIBS} ${OpenCV_LIBS}
tesseract tesseract
) )

View File

@@ -23,13 +23,13 @@ set(lpr_source_files
verticalhistogram.cpp verticalhistogram.cpp
trex.c trex.c
cjson.c cjson.c
tinythread/tinythread.cpp
) )
add_subdirectory(simpleini) add_subdirectory(simpleini)
add_subdirectory(support) add_subdirectory(support)
add_subdirectory(tinythread)
add_library(openalpr ${lpr_source_files}) add_library(openalpr ${lpr_source_files})

View File

@@ -1,6 +0,0 @@
set(tinythread_source_files
tinythread.cpp
)
add_library(tinythread ${tinythread_source_files})