From cb6e2667544ee2ab804c1afc75030bee48f489cb Mon Sep 17 00:00:00 2001 From: Matt Hill Date: Thu, 20 Feb 2014 00:02:02 -0600 Subject: [PATCH] Added cmake config for tinythread --- src/openalpr/CMakeLists.txt | 3 ++- src/openalpr/tinythread/CMakeLists.txt | 6 ++++++ 2 files changed, 8 insertions(+), 1 deletion(-) create mode 100644 src/openalpr/tinythread/CMakeLists.txt diff --git a/src/openalpr/CMakeLists.txt b/src/openalpr/CMakeLists.txt index 79097cc..06d7650 100644 --- a/src/openalpr/CMakeLists.txt +++ b/src/openalpr/CMakeLists.txt @@ -31,4 +31,5 @@ add_library(openalpr ${lpr_source_files}) add_subdirectory(simpleini) -add_subdirectory(support) \ No newline at end of file +add_subdirectory(support) +add_subdirectory(tinythread) \ No newline at end of file diff --git a/src/openalpr/tinythread/CMakeLists.txt b/src/openalpr/tinythread/CMakeLists.txt new file mode 100644 index 0000000..435c2de --- /dev/null +++ b/src/openalpr/tinythread/CMakeLists.txt @@ -0,0 +1,6 @@ +set(tinythread_source_files + tinythread.cpp +) + + +add_library(tinythread ${tinythread_source_files}) \ No newline at end of file