Moved tinythread out of openalpr main and into the support library

This commit is contained in:
Matt Hill
2014-05-18 12:49:09 -05:00
parent ef2b9e3e52
commit d2bee35fa9
6 changed files with 2 additions and 2 deletions

View File

@@ -23,7 +23,6 @@ set(lpr_source_files
verticalhistogram.cpp verticalhistogram.cpp
trex.c trex.c
cjson.c cjson.c
tinythread/tinythread.cpp
) )

View File

@@ -40,7 +40,7 @@
#include <opencv2/core/core.hpp> #include <opencv2/core/core.hpp>
#include "tinythread/tinythread.h" #include "support/tinythread.h"
#define DEFAULT_TOPN 25 #define DEFAULT_TOPN 25
#define DEFAULT_DETECT_REGION false #define DEFAULT_DETECT_REGION false

View File

@@ -3,6 +3,7 @@
set(support_source_files set(support_source_files
filesystem.cpp filesystem.cpp
timing.cpp timing.cpp
tinythread.cpp
) )
add_library(support STATIC ${support_source_files}) add_library(support STATIC ${support_source_files})