File tree 2 files changed +17
-1
lines changed
2 files changed +17
-1
lines changed Original file line number Diff line number Diff line change @@ -70,6 +70,7 @@ check_PROGRAMS = \
70
70
stats_test \
71
71
tablefind_test \
72
72
tablerecog_test \
73
+ tabvector_test \
73
74
tesseracttests
74
75
75
76
TESTS = $(check_PROGRAMS )
@@ -135,6 +136,9 @@ tablefind_test_LDADD = $(GTEST_LIBS) $(TESS_LIBS)
135
136
tablerecog_test_SOURCES = tablerecog_test.cc
136
137
tablerecog_test_LDADD = $(GTEST_LIBS ) $(TESS_LIBS )
137
138
139
+ tabvector_test_SOURCES = tabvector_test.cc
140
+ tabvector_test_LDADD = $(GTEST_LIBS ) $(TESS_LIBS )
141
+
138
142
tesseracttests_SOURCES = ../tests/tesseracttests.cpp
139
143
tesseracttests_LDADD = $(GTEST_LIBS ) $(TESS_LIBS ) $(LEPTONICA_LIBS )
140
144
Original file line number Diff line number Diff line change
1
+ // (C) Copyright 2017, Google Inc.
2
+ // Licensed under the Apache License, Version 2.0 (the "License");
3
+ // you may not use this file except in compliance with the License.
4
+ // You may obtain a copy of the License at
5
+ // http://www.apache.org/licenses/LICENSE-2.0
6
+ // Unless required by applicable law or agreed to in writing, software
7
+ // distributed under the License is distributed on an "AS IS" BASIS,
8
+ // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
9
+ // See the License for the specific language governing permissions and
10
+ // limitations under the License.
1
11
2
12
#include < memory>
3
13
4
- #include " tesseract/textord/tabvector.h"
14
+ #include " tabvector.h"
15
+
16
+ #include " include_gunit.h"
5
17
6
18
using tesseract::TabVector;
7
19
You can’t perform that action at this time.
0 commit comments