|
1 | 1 | local_settings:
|
2 | 2 | use_shared_libs: true
|
| 3 | + silent: false |
3 | 4 |
|
4 | 5 | dependencies:
|
5 | 6 | pvt.cppan.demo.danbloomberg.leptonica: master
|
6 | 7 | pvt.cppan.demo.unicode.icu.i18n: "*"
|
7 | 8 |
|
8 | 9 | root_project: pvt.cppan.demo.google.tesseract
|
9 | 10 |
|
| 11 | +common_settings: |
| 12 | + c++: 11 |
| 13 | + |
10 | 14 | projects:
|
11 | 15 | tesseract:
|
12 |
| - type: library |
13 |
| - c++: 11 |
14 |
| - |
| 16 | + type: lib |
| 17 | + export_all_symbols: true |
15 | 18 | files:
|
16 | 19 | - api/.*\.cpp
|
17 | 20 | - arch/.*\.cpp
|
@@ -48,18 +51,20 @@ projects:
|
48 | 51 | - viewer/svpaint.cpp
|
49 | 52 |
|
50 | 53 | include_directories:
|
51 |
| - private: |
| 54 | + public: |
| 55 | + #private: |
52 | 56 | - arch
|
53 | 57 | - classify
|
54 | 58 | - cutil
|
| 59 | + - ccutil |
55 | 60 | - dict
|
56 | 61 | - lstm
|
57 | 62 | - opencl
|
58 | 63 | - textord
|
59 | 64 | - vs2010/port
|
60 | 65 | - viewer
|
61 | 66 | - wordrec
|
62 |
| - public: |
| 67 | + #public: |
63 | 68 | - api
|
64 | 69 | - ccmain
|
65 | 70 | - ccstruct
|
@@ -139,3 +144,84 @@ projects:
|
139 | 144 | private:
|
140 | 145 | pvt.cppan.demo.danbloomberg.leptonica: master
|
141 | 146 |
|
| 147 | + tessopt: |
| 148 | + type: lib |
| 149 | + static_only: true |
| 150 | + files: training/tessopt.* |
| 151 | + dependencies: tesseract |
| 152 | + |
| 153 | + common_training: |
| 154 | + type: lib |
| 155 | + static_only: true |
| 156 | + files: |
| 157 | + - training/commandlineflags.cpp |
| 158 | + - training/commandlineflags.h |
| 159 | + - training/commontraining.cpp |
| 160 | + - training/commontraining.h |
| 161 | + dependencies: tessopt |
| 162 | + |
| 163 | + ambiguous_words: |
| 164 | + files: training/ambiguous_words.cpp |
| 165 | + dependencies: tesseract |
| 166 | + |
| 167 | + classifier_tester: |
| 168 | + files: training/classifier_tester.cpp |
| 169 | + dependencies: common_training |
| 170 | + |
| 171 | + combine_tessdata: |
| 172 | + files: training/combine_tessdata.cpp |
| 173 | + dependencies: tesseract |
| 174 | + |
| 175 | + cntraining: |
| 176 | + files: training/cntraining.cpp |
| 177 | + dependencies: common_training |
| 178 | + |
| 179 | + dawg2wordlist: |
| 180 | + files: training/dawg2wordlist.cpp |
| 181 | + dependencies: tesseract |
| 182 | + |
| 183 | + mftraining: |
| 184 | + files: |
| 185 | + - training/mftraining.cpp |
| 186 | + - training/mergenf.* |
| 187 | + dependencies: common_training |
| 188 | + |
| 189 | + shapeclustering: |
| 190 | + files: training/shapeclustering.cpp |
| 191 | + dependencies: common_training |
| 192 | + |
| 193 | + unicharset_extractor: |
| 194 | + files: training/unicharset_extractor.cpp |
| 195 | + dependencies: tessopt |
| 196 | + |
| 197 | + wordlist2dawg: |
| 198 | + files: training/wordlist2dawg.cpp |
| 199 | + dependencies: tesseract |
| 200 | + |
| 201 | + unicharset_training: |
| 202 | + type: lib |
| 203 | + static_only: true |
| 204 | + files: |
| 205 | + - training/fileio.* |
| 206 | + - training/icuerrorcode.h |
| 207 | + - training/lstmtester.* |
| 208 | + - training/normstrngs.* |
| 209 | + - training/unicharset_training_utils.* |
| 210 | + dependencies: |
| 211 | + - common_training |
| 212 | + - pvt.cppan.demo.unicode.icu.i18n |
| 213 | + |
| 214 | + lstmeval: |
| 215 | + files: training/lstmeval.cpp |
| 216 | + dependencies: unicharset_training |
| 217 | + |
| 218 | + lstmtraining: |
| 219 | + files: training/lstmtraining.cpp |
| 220 | + dependencies: unicharset_training |
| 221 | + |
| 222 | + set_unicharset_properties: |
| 223 | + files: training/set_unicharset_properties.cpp |
| 224 | + dependencies: unicharset_training |
| 225 | + |
| 226 | + # text2image |
| 227 | + |
0 commit comments