tesseract/cmake/templates/TesseractConfig.cmake.in

29 lines
973 B
CMake
Raw Normal View History

2015-09-06 05:47:32 +08:00
# ===================================================================================
# 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)
2020-10-08 06:16:01 +08:00
# target_link_libraries(MY_TARGET_NAME Tesseract::libtesseract)
2015-09-06 05:47:32 +08:00
#
# 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)
2015-09-06 05:47:32 +08:00
include(${CMAKE_CURRENT_LIST_DIR}/TesseractTargets.cmake)
2018-11-09 04:37:47 +08:00
2020-10-08 05:47:48 +08:00
@PACKAGE_INIT@
2015-09-06 05:47:32 +08:00
2020-12-12 00:25:08 +08:00
set_and_check(Tesseract_INCLUDE_DIRS "@PACKAGE_INCLUDE_DIR@")
set(Tesseract_LIBRARIES tesseract)
2015-09-06 05:47:32 +08:00
2020-10-08 05:47:48 +08:00
check_required_components(Tesseract)