From 19069aab92165ca312d36a84346cf0c811998538 Mon Sep 17 00:00:00 2001 From: Matt Hill Date: Thu, 2 Jan 2014 16:02:41 -0600 Subject: [PATCH] Added CMake config --- src/openalpr/CMakeLists.txt | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 src/openalpr/CMakeLists.txt diff --git a/src/openalpr/CMakeLists.txt b/src/openalpr/CMakeLists.txt new file mode 100644 index 0000000..79097cc --- /dev/null +++ b/src/openalpr/CMakeLists.txt @@ -0,0 +1,34 @@ + + + + +set(lpr_source_files + alpr.cpp + alpr_impl.cpp + config.cpp + regiondetector.cpp + licenseplatecandidate.cpp + utility.cpp + stateidentifier.cpp + featurematcher.cpp + ocr.cpp + postprocess.cpp + binarize_wolf.cpp + platelines.cpp + characterregion.cpp + charactersegmenter.cpp + platecorners.cpp + colorfilter.cpp + characteranalysis.cpp + verticalhistogram.cpp + trex.c + cjson.c +) + + +add_library(openalpr ${lpr_source_files}) + + + +add_subdirectory(simpleini) +add_subdirectory(support) \ No newline at end of file