-
Notifications
You must be signed in to change notification settings - Fork 9.7k
/
Copy pathCMakeLists.txt
405 lines (348 loc) · 13.2 KB
/
CMakeLists.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
#
# tesseract
#
if(NOT ${CMAKE_VERSION} VERSION_LESS "3.12.0")
cmake_policy(SET CMP0074 NEW)
endif()
if(UNIX AND NOT ANDROID)
set(LIB_pthread pthread)
endif()
if(SW_BUILD)
set(ICU_FOUND 1)
else() # NOT SW_BUILD
find_package(PkgConfig)
endif()
# experimental
# If PkgConfig is not present training tools will not be build,
# so it does not make sense to set ICU.
if(MSVC
AND PKG_CONFIG_FOUND
AND NOT SW_BUILD
AND NOT USE_SYSTEM_ICU)
include(CheckTypeSize)
check_type_size("void *" SIZEOF_VOID_P)
if(SIZEOF_VOID_P EQUAL 8)
set(X64 1)
set(ARCH_NAME 64)
elseif(SIZEOF_VOID_P EQUAL 4)
set(X86 1)
set(ARCH_NAME 32)
else()
message(FATAL_ERROR "Cannot determine target architecture")
endif()
set(ICU_DIR "${CMAKE_CURRENT_BINARY_DIR}/icu")
set(ICU_ARCHIVE "${ICU_DIR}/icu${ARCH_NAME}.zip")
if(X86)
set(ICU_HASH 45167a240b60e36b59a87eda23490ce4)
else()
set(ICU_HASH 480c72491576c048de1218c3c5519399)
endif()
message(STATUS "Downloading latest ICU binaries")
set(COMPILER "msvc10")
set(ICU_URL "https://github.com/unicode-org/icu/releases/download")
set(ICU_R "56-1")
set(ICU_V "56_1")
file(
DOWNLOAD
"${ICU_URL}/release-${ICU_R}/icu4c-${ICU_V}-Win${ARCH_NAME}-${COMPILER}.zip"
"${ICU_ARCHIVE}"
SHOW_PROGRESS
INACTIVITY_TIMEOUT 300 # seconds
EXPECTED_HASH MD5=${ICU_HASH})
execute_process(
COMMAND ${CMAKE_COMMAND} -E tar xz "${ICU_ARCHIVE}"
WORKING_DIRECTORY "${ICU_DIR}"
RESULT_VARIABLE __result)
if(NOT __result EQUAL 0)
message(FATAL_ERROR "error ${__result}")
endif()
set(ICU_ROOT ${ICU_DIR}/icu)
endif()
# experimental
if(NOT SW_BUILD)
if(PKG_CONFIG_FOUND)
pkg_check_modules(ICU REQUIRED IMPORTED_TARGET icu-uc icu-i18n)
else()
find_package(ICU 52.1 COMPONENTS uc i18n)
endif()
endif()
# ##############################################################################
# LIBRARY common_training
# ##############################################################################
set(COMMON_TRAINING_SRC
common/commandlineflags.cpp
common/commandlineflags.h
common/commontraining.cpp
common/commontraining.h
common/ctc.cpp
common/ctc.h
common/networkbuilder.cpp
common/networkbuilder.h)
if(NOT DISABLED_LEGACY_ENGINE)
list(
APPEND
COMMON_TRAINING_SRC
common/errorcounter.cpp
common/errorcounter.h
common/intfeaturedist.cpp
common/intfeaturedist.h
common/intfeaturemap.cpp
common/intfeaturemap.h
common/mastertrainer.cpp
common/mastertrainer.h
common/sampleiterator.cpp
common/sampleiterator.h
common/trainingsampleset.cpp
common/trainingsampleset.h)
endif()
add_library(common_training ${COMMON_TRAINING_SRC})
target_include_directories(common_training PUBLIC common
${CMAKE_CURRENT_BINARY_DIR})
target_link_libraries(common_training PUBLIC libtesseract)
generate_export_header(common_training EXPORT_MACRO_NAME
TESS_COMMON_TRAINING_API)
project_group(common_training "Training Tools")
# ##############################################################################
# EXECUTABLE ambiguous_words
# ##############################################################################
if(NOT DISABLED_LEGACY_ENGINE)
add_executable(ambiguous_words ambiguous_words.cpp)
target_link_libraries(ambiguous_words common_training)
project_group(ambiguous_words "Training Tools")
install(
TARGETS ambiguous_words
RUNTIME DESTINATION bin
LIBRARY DESTINATION lib
ARCHIVE DESTINATION lib)
endif()
# ##############################################################################
# EXECUTABLE classifier_tester
# ##############################################################################
if(NOT DISABLED_LEGACY_ENGINE)
add_executable(classifier_tester classifier_tester.cpp)
target_link_libraries(classifier_tester common_training)
project_group(classifier_tester "Training Tools")
install(
TARGETS classifier_tester
RUNTIME DESTINATION bin
LIBRARY DESTINATION lib
ARCHIVE DESTINATION lib)
endif()
# ##############################################################################
# EXECUTABLE combine_tessdata
# ##############################################################################
add_executable(combine_tessdata combine_tessdata.cpp)
target_link_libraries(combine_tessdata common_training)
project_group(combine_tessdata "Training Tools")
install(
TARGETS combine_tessdata
RUNTIME DESTINATION bin
LIBRARY DESTINATION lib
ARCHIVE DESTINATION lib)
# ##############################################################################
# EXECUTABLE cntraining
# ##############################################################################
if(NOT DISABLED_LEGACY_ENGINE)
add_executable(cntraining cntraining.cpp)
target_link_libraries(cntraining common_training)
project_group(cntraining "Training Tools")
install(
TARGETS cntraining
RUNTIME DESTINATION bin
LIBRARY DESTINATION lib
ARCHIVE DESTINATION lib)
endif()
# ##############################################################################
# EXECUTABLE dawg2wordlist
# ##############################################################################
add_executable(dawg2wordlist dawg2wordlist.cpp)
target_link_libraries(dawg2wordlist common_training)
project_group(dawg2wordlist "Training Tools")
install(
TARGETS dawg2wordlist
RUNTIME DESTINATION bin
LIBRARY DESTINATION lib
ARCHIVE DESTINATION lib)
# ##############################################################################
# EXECUTABLE mftraining
# ##############################################################################
if(NOT DISABLED_LEGACY_ENGINE)
add_executable(mftraining mftraining.cpp mergenf.cpp mergenf.h)
target_link_libraries(mftraining common_training)
project_group(mftraining "Training Tools")
install(
TARGETS mftraining
RUNTIME DESTINATION bin
LIBRARY DESTINATION lib
ARCHIVE DESTINATION lib)
endif()
# ##############################################################################
# EXECUTABLE shapeclustering
# ##############################################################################
if(NOT DISABLED_LEGACY_ENGINE)
add_executable(shapeclustering shapeclustering.cpp)
target_link_libraries(shapeclustering common_training)
project_group(shapeclustering "Training Tools")
install(
TARGETS shapeclustering
RUNTIME DESTINATION bin
LIBRARY DESTINATION lib
ARCHIVE DESTINATION lib)
endif()
# ##############################################################################
# EXECUTABLE wordlist2dawg
# ##############################################################################
add_executable(wordlist2dawg wordlist2dawg.cpp)
target_link_libraries(wordlist2dawg common_training)
project_group(wordlist2dawg "Training Tools")
install(
TARGETS wordlist2dawg
RUNTIME DESTINATION bin
LIBRARY DESTINATION lib
ARCHIVE DESTINATION lib)
if(ICU_FOUND)
if(NOT SW_BUILD)
include_directories(${ICU_INCLUDE_DIRS})
endif()
# ############################################################################
# LIBRARY unicharset_training
# ############################################################################
file(GLOB unicharset_training_src unicharset/*)
add_library(unicharset_training ${unicharset_training_src})
if(SW_BUILD)
target_link_libraries(unicharset_training
PUBLIC common_training org.sw.demo.unicode.icu.i18n)
else()
if(${CMAKE_VERSION} VERSION_LESS "3.12.0")
target_link_libraries(unicharset_training PUBLIC common_training
PkgConfig::ICU)
else()
target_link_libraries(unicharset_training PUBLIC common_training
${ICU_LINK_LIBRARIES})
endif()
endif()
target_include_directories(unicharset_training
PUBLIC unicharset ${CMAKE_CURRENT_BINARY_DIR})
generate_export_header(unicharset_training EXPORT_MACRO_NAME
TESS_UNICHARSET_TRAINING_API)
project_group(unicharset_training "Training Tools")
# ############################################################################
# EXECUTABLE combine_lang_model
# ############################################################################
add_executable(combine_lang_model combine_lang_model.cpp)
target_link_libraries(combine_lang_model unicharset_training)
project_group(combine_lang_model "Training Tools")
install(
TARGETS combine_lang_model
RUNTIME DESTINATION bin
LIBRARY DESTINATION lib
ARCHIVE DESTINATION lib)
# ############################################################################
# EXECUTABLE lstmeval
# ############################################################################
add_executable(lstmeval lstmeval.cpp)
target_link_libraries(lstmeval unicharset_training ${LIB_pthread})
project_group(lstmeval "Training Tools")
install(
TARGETS lstmeval
RUNTIME DESTINATION bin
LIBRARY DESTINATION lib
ARCHIVE DESTINATION lib)
# ############################################################################
# EXECUTABLE lstmtraining
# ############################################################################
add_executable(lstmtraining lstmtraining.cpp)
target_link_libraries(lstmtraining unicharset_training ${LIB_pthread})
project_group(lstmtraining "Training Tools")
install(
TARGETS lstmtraining
RUNTIME DESTINATION bin
LIBRARY DESTINATION lib
ARCHIVE DESTINATION lib)
# ############################################################################
# EXECUTABLE merge_unicharsets
# ############################################################################
add_executable(merge_unicharsets merge_unicharsets.cpp)
target_link_libraries(merge_unicharsets common_training)
project_group(merge_unicharsets "Training Tools")
install(
TARGETS merge_unicharsets
RUNTIME DESTINATION bin
LIBRARY DESTINATION lib
ARCHIVE DESTINATION lib)
# ############################################################################
# EXECUTABLE set_unicharset_properties
# ############################################################################
add_executable(set_unicharset_properties set_unicharset_properties.cpp)
target_link_libraries(set_unicharset_properties unicharset_training)
project_group(set_unicharset_properties "Training Tools")
install(
TARGETS set_unicharset_properties
RUNTIME DESTINATION bin
LIBRARY DESTINATION lib
ARCHIVE DESTINATION lib)
# ############################################################################
# EXECUTABLE unicharset_extractor
# ############################################################################
add_executable(unicharset_extractor unicharset_extractor.cpp)
target_link_libraries(unicharset_extractor unicharset_training)
project_group(unicharset_extractor "Training Tools")
install(
TARGETS unicharset_extractor
RUNTIME DESTINATION bin
LIBRARY DESTINATION lib
ARCHIVE DESTINATION lib)
# ############################################################################
if(PKG_CONFIG_FOUND OR SW_BUILD)
if(PKG_CONFIG_FOUND)
pkg_check_modules(
PANGO
REQUIRED
IMPORTED_TARGET
pango>=1.38.0
cairo
pangoft2
pangocairo
fontconfig)
endif()
# ##########################################################################
# LIBRARY pango_training
# ##########################################################################
file(GLOB pango_training_src pango/*)
add_library(pango_training ${pango_training_src})
target_link_libraries(pango_training PUBLIC unicharset_training)
if(SW_BUILD)
target_link_libraries(pango_training
PUBLIC org.sw.demo.gnome.pango.pangocairo)
else()
if(PKG_CONFIG_FOUND)
target_include_directories(pango_training BEFORE
PUBLIC ${PANGO_INCLUDE_DIRS})
target_compile_definitions(pango_training PUBLIC -DPANGO_ENABLE_ENGINE)
if(${CMAKE_VERSION} VERSION_LESS "3.12.0")
target_link_libraries(pango_training PUBLIC PkgConfig::PANGO)
else()
target_link_libraries(pango_training PUBLIC ${PANGO_LINK_LIBRARIES})
endif()
endif()
endif()
target_include_directories(pango_training
PUBLIC pango ${CMAKE_CURRENT_BINARY_DIR})
generate_export_header(pango_training EXPORT_MACRO_NAME
TESS_PANGO_TRAINING_API)
project_group(pango_training "Training Tools")
# ##########################################################################
# EXECUTABLE text2image
# ##########################################################################
set(TEXT2IMAGE_SRC text2image.cpp degradeimage.cpp degradeimage.h)
add_executable(text2image ${TEXT2IMAGE_SRC})
target_link_libraries(text2image pango_training)
project_group(text2image "Training Tools")
install(
TARGETS text2image
RUNTIME DESTINATION bin
LIBRARY DESTINATION lib
ARCHIVE DESTINATION lib)
endif()
endif(ICU_FOUND)
# ##############################################################################