mirror of
https://github.com/tesseract-ocr/tesseract.git
synced 2024-12-05 02:47:00 +08:00
181 lines
4.9 KiB
CMake
181 lines
4.9 KiB
CMake
#
|
|
# tesseract
|
|
#
|
|
|
|
if (STATIC OR NOT (WIN32 OR CYGWIN))
|
|
|
|
########################################
|
|
# LIBRARY tessopt
|
|
########################################
|
|
|
|
add_library (tessopt tessopt.cpp tessopt.h)
|
|
project_group (tessopt "Training Tools")
|
|
|
|
|
|
########################################
|
|
# LIBRARY common_training
|
|
########################################
|
|
|
|
set(common_training_src
|
|
commandlineflags.cpp
|
|
commontraining.cpp
|
|
)
|
|
set(common_training_hdr
|
|
commandlineflags.h
|
|
commontraining.h
|
|
)
|
|
add_library (common_training ${common_training_src} ${common_training_hdr})
|
|
target_link_libraries (common_training tesseract tessopt)
|
|
project_group (common_training "Training Tools")
|
|
|
|
|
|
########################################
|
|
# EXECUTABLE ambiguous_words
|
|
########################################
|
|
|
|
add_executable (ambiguous_words ambiguous_words.cpp)
|
|
target_link_libraries (ambiguous_words tesseract)
|
|
project_group (ambiguous_words "Training Tools")
|
|
|
|
|
|
########################################
|
|
# EXECUTABLE classifier_tester
|
|
########################################
|
|
|
|
add_executable (classifier_tester classifier_tester.cpp)
|
|
target_link_libraries (classifier_tester common_training)
|
|
project_group (classifier_tester "Training Tools")
|
|
|
|
|
|
########################################
|
|
# EXECUTABLE combine_tessdata
|
|
########################################
|
|
|
|
add_executable (combine_tessdata combine_tessdata.cpp)
|
|
target_link_libraries (combine_tessdata tesseract)
|
|
project_group (combine_tessdata "Training Tools")
|
|
|
|
|
|
########################################
|
|
# EXECUTABLE cntraining
|
|
########################################
|
|
|
|
add_executable (cntraining cntraining.cpp)
|
|
target_link_libraries (cntraining common_training)
|
|
project_group (cntraining "Training Tools")
|
|
|
|
|
|
########################################
|
|
# EXECUTABLE dawg2wordlist
|
|
########################################
|
|
|
|
add_executable (dawg2wordlist dawg2wordlist.cpp)
|
|
target_link_libraries (dawg2wordlist tesseract)
|
|
project_group (dawg2wordlist "Training Tools")
|
|
|
|
|
|
########################################
|
|
# EXECUTABLE mftraining
|
|
########################################
|
|
|
|
add_executable (mftraining mftraining.cpp mergenf.cpp mergenf.h)
|
|
target_link_libraries (mftraining common_training)
|
|
project_group (mftraining "Training Tools")
|
|
|
|
|
|
########################################
|
|
# EXECUTABLE shapeclustering
|
|
########################################
|
|
|
|
add_executable (shapeclustering shapeclustering.cpp)
|
|
target_link_libraries (shapeclustering common_training)
|
|
project_group (shapeclustering "Training Tools")
|
|
|
|
|
|
########################################
|
|
# EXECUTABLE unicharset_extractor
|
|
########################################
|
|
|
|
add_executable (unicharset_extractor unicharset_extractor.cpp)
|
|
target_link_libraries (unicharset_extractor tesseract tessopt)
|
|
project_group (unicharset_extractor "Training Tools")
|
|
|
|
|
|
########################################
|
|
# EXECUTABLE wordlist2dawg
|
|
########################################
|
|
|
|
add_executable (wordlist2dawg wordlist2dawg.cpp)
|
|
target_link_libraries (wordlist2dawg tesseract)
|
|
project_group (wordlist2dawg "Training Tools")
|
|
|
|
|
|
###############################################################################
|
|
|
|
if (PKG_CONFIG_FOUND)
|
|
|
|
add_definitions(-DPANGO_ENABLE_ENGINE)
|
|
|
|
########################################
|
|
# EXECUTABLE set_unicharset_properties
|
|
########################################
|
|
|
|
add_executable (set_unicharset_properties
|
|
set_unicharset_properties.cpp
|
|
unicharset_training_utils.cpp
|
|
unicharset_training_utils.h
|
|
fileio.cpp
|
|
fileio.h
|
|
normstrngs.cpp
|
|
normstrngs.h
|
|
icuerrorcode.h
|
|
)
|
|
target_link_libraries (set_unicharset_properties common_training ${ICU_LIBRARIES})
|
|
project_group (set_unicharset_properties "Training Tools")
|
|
|
|
|
|
########################################
|
|
# EXECUTABLE text2image
|
|
########################################
|
|
|
|
set(text2image_src
|
|
text2image.cpp
|
|
boxchar.cpp
|
|
boxchar.h
|
|
degradeimage.cpp
|
|
degradeimage.h
|
|
fileio.cpp
|
|
fileio.h
|
|
ligature_table.cpp
|
|
ligature_table.h
|
|
normstrngs.cpp
|
|
normstrngs.h
|
|
pango_font_info.cpp
|
|
pango_font_info.h
|
|
stringrenderer.cpp
|
|
stringrenderer.h
|
|
tlog.cpp
|
|
tlog.h
|
|
util.h
|
|
icuerrorcode.h
|
|
)
|
|
if (CYGWIN)
|
|
set(text2image_src ${text2image_src} ../vs2010/port/strcasestr.cpp)
|
|
endif()
|
|
|
|
add_executable (text2image ${text2image_src})
|
|
target_link_libraries (text2image tesseract common_training
|
|
${ICU_LIBRARIES}
|
|
${Pango_LIBRARIES}
|
|
${Cairo_LIBRARIES}
|
|
${PangoCairo_LIBRARIES}
|
|
${PangoFt2_LIBRARIES}
|
|
${FontConfig_LIBRARIES}
|
|
)
|
|
project_group (text2image "Training Tools")
|
|
|
|
endif(PKG_CONFIG_FOUND)
|
|
endif(STATIC OR NOT (WIN32 OR CYGWIN))
|
|
|
|
###############################################################################
|