mirror of
https://github.com/tesseract-ocr/tesseract.git
synced 2024-11-24 02:59:07 +08:00
29 lines
976 B
CMake
29 lines
976 B
CMake
# ===================================================================================
|
|
# The Tesseract CMake configuration file
|
|
#
|
|
# ** File generated automatically, do not modify **
|
|
#
|
|
# Usage from an external project:
|
|
# In your CMakeLists.txt, add these lines:
|
|
#
|
|
# find_package(Tesseract REQUIRED)
|
|
# target_link_libraries(MY_TARGET_NAME Tesseract::libtesseract)
|
|
#
|
|
# This file will define the following variables:
|
|
# - Tesseract_LIBRARIES : The list of all imported targets for OpenCV modules.
|
|
# - Tesseract_INCLUDE_DIRS : The Tesseract include directories.
|
|
#
|
|
# ===================================================================================
|
|
|
|
include(CMakeFindDependencyMacro)
|
|
find_dependency(Leptonica)
|
|
|
|
include(${CMAKE_CURRENT_LIST_DIR}/TesseractTargets.cmake)
|
|
|
|
@PACKAGE_INIT@
|
|
|
|
set_and_check(Tesseract_INCLUDE_DIRS "@PACKAGE_INCLUDE_DIR@")
|
|
set(Tesseract_LIBRARIES libtesseract)
|
|
|
|
check_required_components(Tesseract)
|