Skip to content

Commit 4df706e

Browse files
committed
Update .gitignore
* Ignore generated version file * Add some comments * Add missing training executable * Remove two CR at line endings * Remove googletest (part of the git repository, so cannot be ignored) * Add test related files Signed-off-by: Stefan Weil <[email protected]>
1 parent d3f6382 commit 4df706e

File tree

1 file changed

+31
-16
lines changed

1 file changed

+31
-16
lines changed

.gitignore

+31-16
Original file line numberDiff line numberDiff line change
@@ -39,18 +39,25 @@ config_auto.h
3939
/doc/*.5
4040
/doc/*.html
4141
/doc/*.xml
42-
api/tesseract
43-
training/ambiguous_words
44-
training/classifier_tester
45-
training/cntraining
46-
training/combine_tessdata
47-
training/dawg2wordlist
48-
training/mftraining
49-
training/set_unicharset_properties
50-
training/shapeclustering
51-
training/text2image
52-
training/unicharset_extractor
53-
training/wordlist2dawg
42+
43+
# generated version file
44+
/api/tess_version.h
45+
46+
# executables
47+
/api/tesseract
48+
/training/ambiguous_words
49+
/training/classifier_tester
50+
/training/cntraining
51+
/training/combine_tessdata
52+
/training/dawg2wordlist
53+
/training/merge_unicharsets
54+
/training/mftraining
55+
/training/set_unicharset_properties
56+
/training/shapeclustering
57+
/training/text2image
58+
/training/unicharset_extractor
59+
/training/wordlist2dawg
60+
5461
*.patch
5562

5663
# files generated by libtool
@@ -86,9 +93,17 @@ kernel*.bin
8693
/*.lib
8794
/*.exe
8895
/*.lnk
89-
/win*
90-
.vs*
96+
/win*
97+
.vs*
9198
.s*
9299

93-
# GoogleTest
94-
googletest
100+
# files generated by "make check"
101+
/tests/.dirstamp
102+
/unittest/*.trs
103+
104+
# test programs
105+
/unittest/apiexample_test
106+
/unittest/intsimdmatrix_test
107+
/unittest/matrix_test
108+
/unittest/osd_test
109+
/unittest/tesseracttests

0 commit comments

Comments
 (0)