2015-09-06 05:47:32 +08:00
|
|
|
#
|
|
|
|
# tesseract
|
|
|
|
#
|
|
|
|
|
|
|
|
###############################################################################
|
|
|
|
#
|
|
|
|
# cmake settings
|
|
|
|
#
|
|
|
|
###############################################################################
|
|
|
|
|
2019-11-01 16:28:08 +08:00
|
|
|
cmake_minimum_required(VERSION 3.7 FATAL_ERROR)
|
2015-09-06 05:47:32 +08:00
|
|
|
|
|
|
|
# In-source builds are disabled.
|
2018-10-31 02:58:50 +08:00
|
|
|
if ("${CMAKE_CURRENT_SOURCE_DIR}" STREQUAL "${CMAKE_CURRENT_BINARY_DIR}")
|
2015-09-06 05:47:32 +08:00
|
|
|
message(FATAL_ERROR
|
|
|
|
"CMake generation is not possible within the source directory!"
|
|
|
|
"\n Remove the CMakeCache.txt file and try again from another folder, e.g.:"
|
|
|
|
"\n "
|
|
|
|
"\n rm CMakeCache.txt"
|
|
|
|
"\n mkdir build"
|
|
|
|
"\n cd build"
|
|
|
|
"\n cmake .."
|
|
|
|
)
|
|
|
|
endif()
|
|
|
|
|
2018-10-31 02:58:50 +08:00
|
|
|
set(CMAKE_MODULE_PATH "${CMAKE_MODULE_PATH};${CMAKE_CURRENT_SOURCE_DIR}/cmake")
|
2015-09-06 05:47:32 +08:00
|
|
|
|
2018-10-31 02:27:34 +08:00
|
|
|
set(EXECUTABLE_OUTPUT_PATH "${CMAKE_BINARY_DIR}/bin")
|
2015-09-06 05:47:32 +08:00
|
|
|
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY "${EXECUTABLE_OUTPUT_PATH}")
|
|
|
|
|
|
|
|
# Use solution folders.
|
|
|
|
set_property(GLOBAL PROPERTY USE_FOLDERS ON)
|
|
|
|
set_property(GLOBAL PROPERTY PREDEFINED_TARGETS_FOLDER "CMake Targets")
|
|
|
|
|
|
|
|
###############################################################################
|
|
|
|
#
|
|
|
|
# project settings
|
|
|
|
#
|
|
|
|
###############################################################################
|
|
|
|
|
|
|
|
project(tesseract C CXX)
|
|
|
|
|
2018-03-28 15:58:25 +08:00
|
|
|
# Get version with components from VERSION file.
|
|
|
|
file(STRINGS "VERSION" VERSION_PLAIN)
|
|
|
|
string(REGEX REPLACE "^([^.]*)\\..*" "\\1" VERSION_MAJOR ${VERSION_PLAIN})
|
|
|
|
string(REGEX REPLACE "^[^.]*\\.([^.]*)\\..*" "\\1" VERSION_MINOR ${VERSION_PLAIN})
|
|
|
|
string(REGEX REPLACE "^[^.]*\\.[^.]*\\.([0-9]*).*" "\\1" VERSION_PATCH ${VERSION_PLAIN})
|
2019-01-30 03:01:55 +08:00
|
|
|
if(EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/.git)
|
2019-05-17 05:18:13 +08:00
|
|
|
execute_process(COMMAND git --git-dir ${CMAKE_CURRENT_SOURCE_DIR}/.git describe --abbrev=4
|
2019-01-30 03:01:55 +08:00
|
|
|
OUTPUT_VARIABLE GIT_REV)
|
2019-02-02 03:01:33 +08:00
|
|
|
string(REGEX REPLACE "\n$" "" PACKAGE_VERSION "${GIT_REV}")
|
|
|
|
endif()
|
2019-02-18 03:52:40 +08:00
|
|
|
if(NOT PACKAGE_VERSION)
|
2019-01-30 03:01:55 +08:00
|
|
|
set(PACKAGE_VERSION ${VERSION_PLAIN})
|
|
|
|
endif()
|
2018-03-28 15:58:25 +08:00
|
|
|
|
|
|
|
# Provide also same macro names as autoconf (see configure.ac).
|
|
|
|
set(GENERIC_MAJOR_VERSION ${VERSION_MAJOR})
|
|
|
|
set(GENERIC_MINOR_VERSION ${VERSION_MINOR})
|
|
|
|
set(GENERIC_MICRO_VERSION ${VERSION_PATCH})
|
2015-09-06 05:47:32 +08:00
|
|
|
|
2016-12-26 22:28:31 +08:00
|
|
|
set(MINIMUM_LEPTONICA_VERSION 1.74)
|
2015-10-09 23:12:02 +08:00
|
|
|
|
2019-01-25 06:03:47 +08:00
|
|
|
###############################################################################
|
|
|
|
#
|
|
|
|
# options
|
|
|
|
#
|
|
|
|
###############################################################################
|
2019-10-31 02:37:38 +08:00
|
|
|
|
2019-02-02 01:28:47 +08:00
|
|
|
message( "Configuring tesseract version ${PACKAGE_VERSION}...")
|
2019-01-25 06:03:47 +08:00
|
|
|
|
2019-10-31 02:37:38 +08:00
|
|
|
option(SW_BUILD "Build with sw" ON)
|
2019-01-25 06:03:47 +08:00
|
|
|
option(OPENMP_BUILD "Build with openmp support" OFF) # see issue #1662
|
2019-09-28 20:37:05 +08:00
|
|
|
option(AUTO_OPTIMIZE "Usage of cmake auto optimize macros (not suitable for portable build)" ON)
|
2019-03-17 03:26:15 +08:00
|
|
|
option(GRAPHICS_DISABLED "Disable disable graphics (ScrollView)" OFF)
|
|
|
|
option(DISABLED_LEGACY_ENGINE "Disable the legacy OCR engine" OFF)
|
2019-01-25 06:03:47 +08:00
|
|
|
option(BUILD_TRAINING_TOOLS "Build training tools" ON)
|
|
|
|
option(BUILD_TESTS "Build tests" OFF)
|
2019-07-03 10:29:15 +08:00
|
|
|
option(USE_SYSTEM_ICU "Use system ICU" OFF)
|
2019-01-25 06:03:47 +08:00
|
|
|
|
2015-09-06 05:47:32 +08:00
|
|
|
###############################################################################
|
|
|
|
#
|
|
|
|
# compiler and linker
|
|
|
|
#
|
|
|
|
###############################################################################
|
|
|
|
|
2019-09-29 19:53:44 +08:00
|
|
|
if(NOT CMAKE_BUILD_TYPE)
|
|
|
|
message(STATUS "Setting build type to 'Release' as none was specified.")
|
|
|
|
set(CMAKE_BUILD_TYPE Release CACHE STRING "Choose the type of build." FORCE)
|
|
|
|
set_property(CACHE CMAKE_BUILD_TYPE PROPERTY STRINGS "Debug" "Release")
|
|
|
|
endif()
|
|
|
|
|
2019-09-28 20:35:44 +08:00
|
|
|
include(CheckCXXCompilerFlag)
|
|
|
|
|
2019-02-16 00:50:45 +08:00
|
|
|
# Check for C++ standard to use
|
|
|
|
get_property(known_features GLOBAL PROPERTY CMAKE_CXX_KNOWN_FEATURES)
|
2019-06-02 01:59:45 +08:00
|
|
|
if (cxx_std_17 IN_LIST known_features)
|
2019-05-31 19:52:28 +08:00
|
|
|
set(CMAKE_CXX_STANDARD 17)
|
2019-06-02 01:59:45 +08:00
|
|
|
elseif (cxx_std_14 IN_LIST known_features)
|
2019-02-16 00:50:45 +08:00
|
|
|
set(CMAKE_CXX_STANDARD 14)
|
2019-02-16 16:34:17 +08:00
|
|
|
else() # minimum required standard
|
2019-02-16 00:50:45 +08:00
|
|
|
set(CMAKE_CXX_STANDARD 11)
|
|
|
|
endif()
|
2019-06-02 01:59:45 +08:00
|
|
|
|
2019-07-08 16:34:51 +08:00
|
|
|
# Avoid using experimental c++1y (c++1z) standard even if the compiler announces cxx14 (cxx17)
|
|
|
|
# in CMAKE_CXX_KNOWN_FEATURES and CMAKE_CXX_COMPILE_FEATURES
|
|
|
|
# It is the case of clang 3.9, 4.0 (announces c++1z) and gcc 4.8 (announces c++1y)
|
|
|
|
if ("${CMAKE_CXX17_STANDARD_COMPILE_OPTION}" STREQUAL "-std=c++1z")
|
|
|
|
set(CMAKE_CXX_STANDARD 14)
|
|
|
|
endif()
|
|
|
|
if ("${CMAKE_CXX14_STANDARD_COMPILE_OPTION}" STREQUAL "-std=c++1y")
|
|
|
|
set(CMAKE_CXX_STANDARD 11)
|
2019-06-02 01:59:45 +08:00
|
|
|
endif()
|
|
|
|
|
2019-02-16 00:50:45 +08:00
|
|
|
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
|
|
|
set(CMAKE_CXX_EXTENSIONS OFF)
|
|
|
|
|
2015-09-06 05:47:32 +08:00
|
|
|
set(LIBRARY_TYPE SHARED)
|
|
|
|
if (STATIC)
|
|
|
|
set(LIBRARY_TYPE)
|
|
|
|
endif()
|
|
|
|
|
2019-09-28 14:27:43 +08:00
|
|
|
# auto optimize
|
2019-09-28 20:37:05 +08:00
|
|
|
if (AUTO_OPTIMIZE)
|
|
|
|
include(OptimizeForArchitecture)
|
|
|
|
AutodetectHostArchitecture()
|
|
|
|
OptimizeForArchitecture()
|
|
|
|
endif()
|
2019-07-14 02:10:33 +08:00
|
|
|
# Compiler specific environments
|
2018-12-29 17:43:13 +08:00
|
|
|
if(CMAKE_CXX_COMPILER_ID MATCHES "Clang")
|
|
|
|
set(CLANG 1)
|
|
|
|
endif()
|
2019-07-14 02:10:33 +08:00
|
|
|
if(CMAKE_COMPILER_IS_GNUCXX OR MINGW)
|
|
|
|
set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -Wall -DDEBUG -pedantic -Og")
|
|
|
|
elseif(MSVC)
|
|
|
|
add_definitions(-D_CRT_SECURE_NO_WARNINGS)
|
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /utf-8")
|
|
|
|
if (NOT CLANG)
|
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /MP")
|
2015-09-06 05:47:32 +08:00
|
|
|
endif()
|
2019-07-14 02:10:33 +08:00
|
|
|
set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} /Wall /bigobj")
|
2019-09-28 05:56:36 +08:00
|
|
|
endif()
|
|
|
|
if(CLANG) # clang all platforms
|
2019-07-14 02:10:33 +08:00
|
|
|
set(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} -Wno-unused-command-line-argument")
|
|
|
|
set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -Wall -DDEBUG -pedantic -O0")
|
2015-09-07 01:43:28 +08:00
|
|
|
endif()
|
|
|
|
|
2019-01-25 06:03:47 +08:00
|
|
|
if (OPENMP_BUILD)
|
2019-06-25 19:20:52 +08:00
|
|
|
if (MSVC)
|
2019-01-25 06:03:47 +08:00
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /openmp")
|
2019-06-25 19:20:52 +08:00
|
|
|
else()
|
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fopenmp")
|
2019-01-25 06:03:47 +08:00
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
2019-07-14 02:10:33 +08:00
|
|
|
|
2015-09-07 07:49:18 +08:00
|
|
|
if (CYGWIN)
|
|
|
|
add_definitions(-D__CYGWIN__)
|
2019-07-14 02:10:33 +08:00
|
|
|
elseif(UNIX)
|
2019-01-04 06:53:38 +08:00
|
|
|
if (NOT ANDROID)
|
|
|
|
set(LIB_pthread pthread)
|
|
|
|
endif()
|
2019-07-14 02:10:33 +08:00
|
|
|
elseif(WIN32)
|
|
|
|
set(LIB_Ws2_32 Ws2_32)
|
2015-09-06 05:47:32 +08:00
|
|
|
endif()
|
|
|
|
|
2018-04-11 05:16:31 +08:00
|
|
|
###############################################################################
|
|
|
|
#
|
|
|
|
# packages
|
|
|
|
#
|
|
|
|
###############################################################################
|
|
|
|
|
2019-10-31 02:37:38 +08:00
|
|
|
if (SW_BUILD)
|
2019-07-08 23:50:30 +08:00
|
|
|
find_package(SW REQUIRED)
|
|
|
|
if (STATIC)
|
|
|
|
set(SW_BUILD_SHARED_LIBS 0)
|
|
|
|
else()
|
|
|
|
set(SW_BUILD_SHARED_LIBS 1)
|
|
|
|
endif()
|
|
|
|
sw_add_package(
|
2019-10-31 02:37:38 +08:00
|
|
|
org.sw.demo.danbloomberg.leptonica
|
2019-07-08 23:50:30 +08:00
|
|
|
org.sw.demo.libarchive.libarchive
|
|
|
|
)
|
|
|
|
if (BUILD_TRAINING_TOOLS)
|
|
|
|
sw_add_package(
|
|
|
|
org.sw.demo.gnome.pango.pangocairo
|
|
|
|
org.sw.demo.unicode.icu.i18n
|
|
|
|
)
|
|
|
|
endif()
|
|
|
|
sw_execute()
|
2019-05-17 05:18:13 +08:00
|
|
|
else()
|
2019-05-17 16:51:06 +08:00
|
|
|
find_package(PkgConfig)
|
2019-05-17 17:19:07 +08:00
|
|
|
if(PKG_CONFIG_EXECUTABLE AND NOT Leptonica_DIR)
|
2019-05-17 16:51:06 +08:00
|
|
|
pkg_check_modules(Leptonica REQUIRED lept>=${MINIMUM_LEPTONICA_VERSION})
|
|
|
|
link_directories(${Leptonica_LIBRARY_DIRS})
|
2019-05-17 05:18:13 +08:00
|
|
|
else()
|
2019-05-17 16:51:06 +08:00
|
|
|
find_package(Leptonica ${MINIMUM_LEPTONICA_VERSION} REQUIRED CONFIG)
|
2019-05-24 16:59:59 +08:00
|
|
|
endif()
|
2019-05-17 16:51:06 +08:00
|
|
|
if (NOT Leptonica_FOUND)
|
|
|
|
message(FATAL_ERROR "Cannot find required library Leptonica. Quitting!")
|
|
|
|
endif(NOT Leptonica_FOUND)
|
2019-07-09 01:59:23 +08:00
|
|
|
|
|
|
|
find_package(LibArchive)
|
|
|
|
if(LibArchive_FOUND)
|
|
|
|
set(HAVE_LIBARCHIVE ON)
|
|
|
|
endif()
|
2018-04-11 05:16:31 +08:00
|
|
|
endif()
|
|
|
|
|
|
|
|
find_package(OpenCL QUIET)
|
2019-03-11 03:08:19 +08:00
|
|
|
|
2018-04-11 05:16:31 +08:00
|
|
|
|
2015-09-06 05:47:32 +08:00
|
|
|
###############################################################################
|
|
|
|
#
|
|
|
|
# configure
|
|
|
|
#
|
|
|
|
###############################################################################
|
|
|
|
|
2019-04-22 15:00:17 +08:00
|
|
|
foreach(flag ${Vc_ARCHITECTURE_FLAGS})
|
2019-09-28 20:35:44 +08:00
|
|
|
set(Vc_CXX_FLAGS "${Vc_CXX_FLAGS} ${flag}")
|
2019-04-22 15:00:17 +08:00
|
|
|
endforeach()
|
|
|
|
|
|
|
|
# add definition as expected in src/arch/simddetect.cpp
|
2019-04-22 15:06:22 +08:00
|
|
|
set(AVX_OPT OFF)
|
|
|
|
set(AVX2_OPT OFF)
|
2019-07-13 02:47:12 +08:00
|
|
|
set(FMA_OPT OFF)
|
2019-04-22 15:06:22 +08:00
|
|
|
set(SSE41_OPT OFF)
|
|
|
|
set(MARCH_NATIVE_OPT OFF)
|
2019-04-22 15:00:17 +08:00
|
|
|
foreach(flag ${_enable_vector_unit_list}) # from OptimizeForArchitecture()
|
|
|
|
string(TOUPPER "${flag}" flag)
|
|
|
|
string(REPLACE "\." "_" flag "${flag}")
|
|
|
|
set(sim_flags "${sim_flags} -D${flag}")
|
|
|
|
string(REPLACE "_" "" flag "${flag}")
|
2019-07-13 02:47:12 +08:00
|
|
|
if("${flag}" MATCHES "AVX|AVX2|FMA|SSE41")
|
2019-04-22 15:06:22 +08:00
|
|
|
set("${flag}_OPT" ON)
|
2019-04-22 15:00:17 +08:00
|
|
|
endif()
|
|
|
|
endforeach(flag)
|
2019-09-28 20:35:44 +08:00
|
|
|
if (NOT MSVC)
|
|
|
|
set(MARCH_NATIVE_FLAGS "${MARCH_NATIVE_FLAGS} -O3 -ffast-math")
|
|
|
|
endif()
|
2019-04-22 15:00:17 +08:00
|
|
|
CHECK_CXX_COMPILER_FLAG("-march=native" COMPILER_SUPPORTS_MARCH_NATIVE)
|
|
|
|
if(COMPILER_SUPPORTS_MARCH_NATIVE)
|
2019-09-28 20:35:44 +08:00
|
|
|
set(MARCH_NATIVE_FLAGS "${MARCH_NATIVE_FLAGS} -march=native -mtune=native")
|
2019-04-22 15:06:22 +08:00
|
|
|
set(MARCH_NATIVE_OPT ON)
|
2019-04-22 15:00:17 +08:00
|
|
|
endif()
|
|
|
|
|
2018-10-31 02:58:50 +08:00
|
|
|
set(AUTOCONFIG_SRC ${CMAKE_CURRENT_BINARY_DIR}/config_auto.h.in)
|
|
|
|
set(AUTOCONFIG ${CMAKE_CURRENT_BINARY_DIR}/config_auto.h)
|
2019-02-02 01:02:28 +08:00
|
|
|
add_definitions(-DHAVE_CONFIG_H)
|
2015-09-06 05:47:32 +08:00
|
|
|
|
2019-03-17 03:26:15 +08:00
|
|
|
if(GRAPHICS_DISABLED)
|
|
|
|
message("ScrollView debugging disabled.")
|
|
|
|
endif()
|
2019-04-22 03:58:41 +08:00
|
|
|
set (CMAKE_REQUIRED_INCLUDES ${CMAKE_REQUIRED_INCLUDES} "${CMAKE_PREFIX_PATH}/include" "${CMAKE_INSTALL_PREFIX}/include")
|
2018-10-31 02:49:14 +08:00
|
|
|
include(Configure)
|
2015-09-06 05:47:32 +08:00
|
|
|
|
|
|
|
configure_file(${AUTOCONFIG_SRC} ${AUTOCONFIG} @ONLY)
|
|
|
|
|
2017-04-20 19:59:13 +08:00
|
|
|
set(INCLUDE_DIR "${CMAKE_INSTALL_PREFIX}/include" "${CMAKE_INSTALL_PREFIX}/include/tesseract")
|
2015-09-06 05:47:32 +08:00
|
|
|
|
2018-03-28 15:58:25 +08:00
|
|
|
configure_file(
|
2019-10-29 18:40:17 +08:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/include/tesseract/version.h.in
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/include/tesseract/version.h @ONLY)
|
2018-03-28 20:26:03 +08:00
|
|
|
configure_file(
|
2018-10-31 02:58:50 +08:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/vs2010/tesseract/tesseract.rc.in
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/vs2010/tesseract/tesseract.rc @ONLY)
|
2018-03-31 18:49:29 +08:00
|
|
|
configure_file(
|
2018-10-31 02:58:50 +08:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/vs2010/tesseract/libtesseract.rc.in
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/vs2010/tesseract/libtesseract.rc @ONLY)
|
2015-09-06 05:47:32 +08:00
|
|
|
configure_file(
|
2018-10-31 02:58:50 +08:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/cmake/templates/TesseractConfig-version.cmake.in
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/TesseractConfig-version.cmake @ONLY)
|
2015-09-06 05:47:32 +08:00
|
|
|
configure_file(
|
2018-10-31 02:58:50 +08:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/cmake/templates/TesseractConfig.cmake.in
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/TesseractConfig.cmake @ONLY)
|
2015-09-06 05:47:32 +08:00
|
|
|
|
2019-04-22 15:06:22 +08:00
|
|
|
# show summary of configuration
|
2019-09-28 05:56:36 +08:00
|
|
|
if(${CMAKE_BUILD_TYPE} MATCHES Debug)
|
|
|
|
set(COMPILER_FLAGS "${CMAKE_CXX_FLAGS} ${CMAKE_CXX_FLAGS_DEBUG}")
|
|
|
|
elseif(${CMAKE_BUILD_TYPE} MATCHES Release)
|
|
|
|
set(COMPILER_FLAGS "${CMAKE_CXX_FLAGS} ${CMAKE_CXX_FLAGS_RELEASE}")
|
|
|
|
endif()
|
2019-04-22 15:06:22 +08:00
|
|
|
message( STATUS )
|
|
|
|
message( STATUS "General configuration for Tesseract ${PACKAGE_VERSION}")
|
|
|
|
message( STATUS "--------------------------------------------------------")
|
|
|
|
message( STATUS "Build type: ${CMAKE_BUILD_TYPE}")
|
|
|
|
message( STATUS "Compiler: ${CMAKE_CXX_COMPILER_ID}")
|
2019-04-24 05:05:26 +08:00
|
|
|
message( STATUS "Used standard: C++${CMAKE_CXX_STANDARD}")
|
2019-09-28 05:56:36 +08:00
|
|
|
message( STATUS "CXX compiler options: ${COMPILER_FLAGS}")
|
2019-04-22 15:06:22 +08:00
|
|
|
message( STATUS "Linker options: ${CMAKE_EXE_LINKER_FLAGS} ${CMAKE_EXE_LINKER_FLAGS_${CMAKE_BUILD_TYPE_UP}}")
|
|
|
|
message( STATUS "Install directory: ${CMAKE_INSTALL_PREFIX}")
|
|
|
|
message( STATUS "Architecture flags: ${Vc_ARCHITECTURE_FLAGS}")
|
|
|
|
message( STATUS "Vector unit list: ${_enable_vector_unit_list}")
|
|
|
|
message( STATUS "AVX_OPT: ${AVX_OPT}")
|
|
|
|
message( STATUS "AVX2_OPT: ${AVX2_OPT}")
|
2019-07-13 02:47:12 +08:00
|
|
|
message( STATUS "FMA_OPT: ${FMA_OPT}")
|
2019-04-22 15:06:22 +08:00
|
|
|
message( STATUS "SSE41_OPT: ${SSE41_OPT}")
|
|
|
|
message( STATUS "MARCH_NATIVE_OPT: ${MARCH_NATIVE_OPT}")
|
|
|
|
message( STATUS "sim_flags: ${sim_flags}")
|
2019-07-08 23:50:30 +08:00
|
|
|
message( STATUS "--------------------------------------------------------")
|
|
|
|
message( STATUS "Build with sw [SW_BUILD]: ${SW_BUILD}")
|
2019-04-22 15:06:22 +08:00
|
|
|
message( STATUS "Build with openmp support [OPENMP_BUILD]: ${OPENMP_BUILD}")
|
|
|
|
message( STATUS "Disable disable graphics (ScrollView) [GRAPHICS_DISABLED]: ${GRAPHICS_DISABLED}")
|
|
|
|
message( STATUS "Disable the legacy OCR engine [DISABLED_LEGACY_ENGINE]: ${DISABLED_LEGACY_ENGINE}")
|
|
|
|
message( STATUS "Build training tools [BUILD_TRAINING_TOOLS]: ${BUILD_TRAINING_TOOLS}")
|
|
|
|
message( STATUS "Build tests [BUILD_TESTS]: ${BUILD_TESTS}")
|
2019-07-03 10:29:15 +08:00
|
|
|
message( STATUS "Use system ICU Library [USE_SYSTEM_ICU]: ${USE_SYSTEM_ICU}")
|
2019-04-22 15:06:22 +08:00
|
|
|
message( STATUS "--------------------------------------------------------")
|
|
|
|
message( STATUS )
|
|
|
|
|
2015-09-06 05:47:32 +08:00
|
|
|
###############################################################################
|
|
|
|
#
|
|
|
|
# build
|
|
|
|
#
|
|
|
|
###############################################################################
|
|
|
|
|
2018-10-31 02:49:14 +08:00
|
|
|
include(BuildFunctions)
|
|
|
|
include(SourceGroups)
|
2015-09-06 05:47:32 +08:00
|
|
|
|
|
|
|
add_definitions(-D_SILENCE_STDEXT_HASH_DEPRECATION_WARNINGS=1)
|
|
|
|
|
|
|
|
include_directories(${Leptonica_INCLUDE_DIRS})
|
2019-07-25 15:13:31 +08:00
|
|
|
include_directories(${LibArchive_INCLUDE_DIRS})
|
2015-09-06 05:47:32 +08:00
|
|
|
|
2018-10-31 02:58:50 +08:00
|
|
|
include_directories(${CMAKE_CURRENT_BINARY_DIR})
|
2019-10-29 05:40:25 +08:00
|
|
|
include_directories(${CMAKE_CURRENT_BINARY_DIR}/include)
|
|
|
|
include_directories(include)
|
2018-04-25 16:02:54 +08:00
|
|
|
include_directories(src/arch)
|
|
|
|
include_directories(src/ccmain)
|
|
|
|
include_directories(src/ccstruct)
|
|
|
|
include_directories(src/ccutil)
|
|
|
|
include_directories(src/classify)
|
|
|
|
include_directories(src/cutil)
|
|
|
|
include_directories(src/dict)
|
|
|
|
include_directories(src/lstm)
|
|
|
|
include_directories(src/opencl)
|
|
|
|
include_directories(src/textord)
|
|
|
|
include_directories(src/viewer)
|
|
|
|
include_directories(src/wordrec)
|
2019-08-12 22:00:50 +08:00
|
|
|
include_directories(src/training)
|
2019-04-25 03:42:58 +08:00
|
|
|
if(ANDROID_TOOLCHAIN)
|
|
|
|
include_directories(${ANDROID_TOOLCHAIN}/sysroot/usr/include)
|
|
|
|
add_compile_definitions(__ANDROID_API_FUTURE__)
|
2019-03-31 22:10:35 +08:00
|
|
|
endif()
|
2015-09-06 05:47:32 +08:00
|
|
|
|
|
|
|
########################################
|
2015-09-06 18:47:30 +08:00
|
|
|
# LIBRARY tesseract
|
2015-09-06 05:47:32 +08:00
|
|
|
########################################
|
|
|
|
|
2015-09-06 18:47:30 +08:00
|
|
|
file(GLOB tesseract_src
|
2018-04-25 16:02:54 +08:00
|
|
|
src/ccmain/*.cpp
|
|
|
|
src/ccstruct/*.cpp
|
|
|
|
src/ccutil/*.cpp
|
|
|
|
src/classify/*.cpp
|
|
|
|
src/cutil/*.cpp
|
|
|
|
src/dict/*.cpp
|
|
|
|
src/lstm/*.cpp
|
|
|
|
src/opencl/*.cpp
|
|
|
|
src/textord/*.cpp
|
|
|
|
src/viewer/*.cpp
|
|
|
|
src/wordrec/*.cpp
|
2015-09-06 18:47:30 +08:00
|
|
|
)
|
2019-04-22 15:00:17 +08:00
|
|
|
|
2019-09-28 20:35:44 +08:00
|
|
|
list(APPEND arch_files
|
|
|
|
src/arch/dotproduct.cpp
|
|
|
|
src/arch/simddetect.cpp
|
|
|
|
src/arch/intsimdmatrix.cpp
|
|
|
|
)
|
|
|
|
set_source_files_properties(${arch_files} PROPERTIES COMPILE_FLAGS "${sim_flags}")
|
|
|
|
set_source_files_properties(src/arch/dotproduct.cpp PROPERTIES COMPILE_FLAGS "${MARCH_NATIVE_FLAGS} ${Vc_CXX_FLAGS}")
|
2019-04-22 15:00:17 +08:00
|
|
|
if(AVX_OPT)
|
2019-09-28 20:35:44 +08:00
|
|
|
list(APPEND arch_files_opt src/arch/dotproductavx.cpp)
|
|
|
|
set_source_files_properties(src/arch/dotproductavx.cpp PROPERTIES COMPILE_FLAGS "-DAVX")
|
2019-04-22 15:00:17 +08:00
|
|
|
endif(AVX_OPT)
|
|
|
|
if(AVX2_OPT)
|
2019-09-28 20:35:44 +08:00
|
|
|
list(APPEND arch_files_opt src/arch/intsimdmatrixavx2.cpp)
|
|
|
|
set_source_files_properties(src/arch/intsimdmatrixavx2.cpp PROPERTIES COMPILE_FLAGS "-DAVX2")
|
2019-04-22 15:00:17 +08:00
|
|
|
endif(AVX2_OPT)
|
2019-07-13 02:47:12 +08:00
|
|
|
if(FMA_OPT)
|
2019-09-28 20:35:44 +08:00
|
|
|
list(APPEND arch_files_opt src/arch/dotproductfma.cpp)
|
|
|
|
set_source_files_properties(src/arch/dotproductfma.cpp PROPERTIES COMPILE_FLAGS "-mfma")
|
2019-07-16 11:03:14 +08:00
|
|
|
endif(FMA_OPT)
|
2019-04-22 15:00:17 +08:00
|
|
|
if(SSE41_OPT)
|
2019-09-28 20:35:44 +08:00
|
|
|
list(APPEND arch_files_opt src/arch/dotproductsse.cpp src/arch/intsimdmatrixsse.cpp)
|
|
|
|
set_source_files_properties(src/arch/dotproductsse.cpp src/arch/intsimdmatrixsse.cpp PROPERTIES COMPILE_FLAGS "-DSSE4_1 -msse4.1")
|
2019-04-22 15:00:17 +08:00
|
|
|
endif(SSE41_OPT)
|
2019-09-28 20:35:44 +08:00
|
|
|
set_source_files_properties(${arch_files_opt} PROPERTIES COMPILE_FLAGS "${Vc_CXX_FLAGS}")
|
2019-04-22 15:00:17 +08:00
|
|
|
|
2015-09-06 18:47:30 +08:00
|
|
|
file(GLOB tesseract_hdr
|
2018-04-25 16:02:54 +08:00
|
|
|
src/arch/*.h
|
|
|
|
src/ccmain/*.h
|
|
|
|
src/ccstruct/*.h
|
|
|
|
src/ccutil/*.h
|
|
|
|
src/classify/*.h
|
|
|
|
src/cutil/*.h
|
|
|
|
src/dict/*.h
|
|
|
|
src/lstm/*.h
|
|
|
|
src/opencl/*.h
|
|
|
|
src/textord/*.h
|
|
|
|
src/viewer/*.h
|
|
|
|
src/wordrec/*.h
|
2015-09-06 18:47:30 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
set(tesseract_src ${tesseract_src}
|
2018-04-25 16:02:54 +08:00
|
|
|
src/api/baseapi.cpp
|
|
|
|
src/api/capi.cpp
|
|
|
|
src/api/renderer.cpp
|
2018-11-30 13:09:36 +08:00
|
|
|
src/api/altorenderer.cpp
|
2018-12-16 05:58:51 +08:00
|
|
|
src/api/hocrrenderer.cpp
|
2019-02-01 01:30:59 +08:00
|
|
|
src/api/lstmboxrenderer.cpp
|
2018-12-16 05:58:51 +08:00
|
|
|
src/api/pdfrenderer.cpp
|
2019-02-11 02:31:31 +08:00
|
|
|
src/api/wordstrboxrenderer.cpp
|
2015-09-06 05:47:32 +08:00
|
|
|
)
|
|
|
|
|
2017-02-24 00:29:48 +08:00
|
|
|
if (WIN32)
|
|
|
|
if (MSVC)
|
2018-04-25 16:02:54 +08:00
|
|
|
include_directories(src/vs2010/tesseract)
|
2018-03-31 18:49:29 +08:00
|
|
|
set(tesseract_hdr
|
|
|
|
${tesseract_hdr}
|
2018-04-25 16:02:54 +08:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/vs2010/tesseract/resource.h)
|
2018-12-29 17:30:56 +08:00
|
|
|
set(tesseract_rsc ${CMAKE_CURRENT_BINARY_DIR}/vs2010/tesseract/libtesseract.rc)
|
2018-12-29 17:43:13 +08:00
|
|
|
endif() # MSVC
|
2017-02-24 00:29:48 +08:00
|
|
|
endif()
|
|
|
|
|
2019-09-28 20:35:44 +08:00
|
|
|
add_library (libtesseract ${LIBRARY_TYPE} ${tesseract_src} ${arch_files}
|
|
|
|
${arch_files_opt} ${tesseract_hdr} ${tesseract_rsc}
|
2018-03-31 18:49:29 +08:00
|
|
|
)
|
2015-09-07 06:46:33 +08:00
|
|
|
if (NOT STATIC)
|
2017-02-23 20:39:58 +08:00
|
|
|
target_compile_definitions (libtesseract
|
2016-12-17 21:19:35 +08:00
|
|
|
PRIVATE -DTESS_EXPORTS
|
|
|
|
INTERFACE -DTESS_IMPORTS
|
|
|
|
)
|
2017-02-23 20:39:58 +08:00
|
|
|
set_target_properties (libtesseract PROPERTIES WINDOWS_EXPORT_ALL_SYMBOLS True)
|
2015-09-07 06:46:33 +08:00
|
|
|
endif()
|
2019-03-11 05:11:25 +08:00
|
|
|
target_link_libraries (libtesseract PRIVATE ${LIB_Ws2_32} ${LIB_pthread})
|
2018-03-28 16:00:18 +08:00
|
|
|
set_target_properties (libtesseract PROPERTIES VERSION ${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH})
|
|
|
|
set_target_properties (libtesseract PROPERTIES SOVERSION ${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH})
|
2015-10-09 23:12:02 +08:00
|
|
|
if (WIN32)
|
2017-02-23 20:39:58 +08:00
|
|
|
set_target_properties (libtesseract PROPERTIES OUTPUT_NAME tesseract${VERSION_MAJOR}${VERSION_MINOR})
|
|
|
|
set_target_properties (libtesseract PROPERTIES DEBUG_OUTPUT_NAME tesseract${VERSION_MAJOR}${VERSION_MINOR}d)
|
2017-08-30 05:14:13 +08:00
|
|
|
else()
|
|
|
|
set_target_properties (libtesseract PROPERTIES OUTPUT_NAME tesseract)
|
2015-10-09 23:12:02 +08:00
|
|
|
endif()
|
2015-09-06 05:47:32 +08:00
|
|
|
|
2019-10-31 02:37:38 +08:00
|
|
|
if (SW_BUILD)
|
2019-07-08 23:50:30 +08:00
|
|
|
target_link_libraries (libtesseract PUBLIC
|
2019-10-31 02:37:38 +08:00
|
|
|
org.sw.demo.danbloomberg.leptonica
|
2019-07-08 23:50:30 +08:00
|
|
|
org.sw.demo.libarchive.libarchive
|
|
|
|
)
|
|
|
|
file(WRITE ${CMAKE_CURRENT_BINARY_DIR}/TesseractTargets.cmake "include(${CMAKE_CURRENT_BINARY_DIR}/cppan.cmake)\n")
|
|
|
|
export(TARGETS libtesseract APPEND FILE ${CMAKE_CURRENT_BINARY_DIR}/TesseractTargets.cmake)
|
2019-02-02 01:02:28 +08:00
|
|
|
else()
|
2019-03-11 05:06:46 +08:00
|
|
|
target_link_libraries (libtesseract PUBLIC
|
|
|
|
${Leptonica_LIBRARIES}
|
|
|
|
${LibArchive_LIBRARIES}
|
|
|
|
)
|
2019-02-02 01:02:28 +08:00
|
|
|
export(TARGETS libtesseract FILE ${CMAKE_CURRENT_BINARY_DIR}/TesseractTargets.cmake)
|
2016-06-30 05:29:55 +08:00
|
|
|
endif()
|
2015-09-06 05:47:32 +08:00
|
|
|
|
2019-01-25 06:03:47 +08:00
|
|
|
if (WIN32 AND CLANG AND OPENMP_BUILD)
|
2018-12-29 17:43:13 +08:00
|
|
|
# Workaround for "libomp.lib is not automatically added on Windows"
|
|
|
|
# see: http://lists.llvm.org/pipermail/openmp-dev/2015-August/000857.html
|
|
|
|
# TODO: Find better way how to set Clang OpenMP library for linking on Windows
|
2019-03-11 05:11:25 +08:00
|
|
|
target_link_libraries (libtesseract PRIVATE "c:\\Program Files\\LLVM\\lib\\libomp.lib")
|
2018-12-29 17:43:13 +08:00
|
|
|
endif()
|
|
|
|
|
2015-09-06 05:47:32 +08:00
|
|
|
########################################
|
|
|
|
# EXECUTABLE tesseractmain
|
|
|
|
########################################
|
|
|
|
|
2018-04-25 16:02:54 +08:00
|
|
|
set(tesseractmain_src src/api/tesseractmain.cpp)
|
2018-03-31 18:49:29 +08:00
|
|
|
if (MSVC)
|
2018-10-31 02:58:50 +08:00
|
|
|
set(tesseractmain_rsc ${CMAKE_CURRENT_BINARY_DIR}/vs2010/tesseract/tesseract.rc)
|
2018-03-31 18:49:29 +08:00
|
|
|
endif()
|
|
|
|
|
|
|
|
add_executable (tesseract ${tesseractmain_src} ${tesseractmain_rsc})
|
2017-02-23 20:39:58 +08:00
|
|
|
target_link_libraries (tesseract libtesseract)
|
2019-05-24 17:12:39 +08:00
|
|
|
if (HAVE_TIFFIO_H)
|
|
|
|
target_link_libraries(tesseract tiff)
|
|
|
|
endif()
|
2015-09-06 05:47:32 +08:00
|
|
|
|
2019-05-31 20:18:26 +08:00
|
|
|
if (OPENMP_BUILD AND UNIX)
|
|
|
|
target_link_libraries (tesseract pthread)
|
|
|
|
endif()
|
|
|
|
|
2015-09-06 18:47:30 +08:00
|
|
|
########################################
|
|
|
|
|
2018-10-31 02:58:50 +08:00
|
|
|
if (BUILD_TESTS AND EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/googletest/CMakeLists.txt)
|
2017-07-24 23:59:12 +08:00
|
|
|
add_subdirectory(googletest)
|
|
|
|
endif()
|
|
|
|
|
2016-12-17 23:33:41 +08:00
|
|
|
if (BUILD_TRAINING_TOOLS)
|
2018-04-25 16:35:26 +08:00
|
|
|
add_subdirectory(src/training)
|
2016-12-17 23:33:41 +08:00
|
|
|
endif()
|
2015-09-06 18:47:30 +08:00
|
|
|
|
2017-04-20 19:50:53 +08:00
|
|
|
get_target_property(tesseract_NAME libtesseract NAME)
|
|
|
|
get_target_property(tesseract_VERSION libtesseract VERSION)
|
|
|
|
get_target_property(tesseract_OUTPUT_NAME libtesseract OUTPUT_NAME)
|
|
|
|
configure_file(tesseract.pc.cmake ${CMAKE_CURRENT_BINARY_DIR}/tesseract.pc @ONLY)
|
|
|
|
install(FILES ${CMAKE_CURRENT_BINARY_DIR}/tesseract.pc DESTINATION lib/pkgconfig)
|
|
|
|
install(TARGETS tesseract RUNTIME DESTINATION bin LIBRARY DESTINATION lib ARCHIVE DESTINATION lib)
|
|
|
|
install(TARGETS libtesseract EXPORT TesseractTargets RUNTIME DESTINATION bin LIBRARY DESTINATION lib ARCHIVE DESTINATION lib)
|
|
|
|
install(EXPORT TesseractTargets DESTINATION cmake)
|
|
|
|
install(FILES
|
2018-10-31 02:58:50 +08:00
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/TesseractConfig.cmake
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/TesseractConfig-version.cmake
|
2017-04-20 19:50:53 +08:00
|
|
|
DESTINATION cmake)
|
|
|
|
|
|
|
|
install(FILES
|
|
|
|
# from api/makefile.am
|
2019-10-29 05:40:25 +08:00
|
|
|
include/tesseract/apitypes.h
|
|
|
|
include/tesseract/baseapi.h
|
|
|
|
include/tesseract/capi.h
|
|
|
|
include/tesseract/renderer.h
|
2019-10-29 18:40:17 +08:00
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/include/tesseract/version.h
|
2017-04-20 19:50:53 +08:00
|
|
|
|
|
|
|
#from ccmain/makefile.am
|
2019-10-29 05:40:25 +08:00
|
|
|
include/tesseract/thresholder.h
|
|
|
|
include/tesseract/ltrresultiterator.h
|
|
|
|
include/tesseract/pageiterator.h
|
|
|
|
include/tesseract/resultiterator.h
|
|
|
|
include/tesseract/osdetect.h
|
2017-04-20 19:50:53 +08:00
|
|
|
|
|
|
|
#from ccstruct/makefile.am
|
2019-10-29 05:40:25 +08:00
|
|
|
include/tesseract/publictypes.h
|
2017-04-20 19:50:53 +08:00
|
|
|
|
|
|
|
#from ccutil/makefile.am
|
2019-10-29 05:40:25 +08:00
|
|
|
include/tesseract/genericvector.h
|
|
|
|
include/tesseract/helpers.h
|
|
|
|
include/tesseract/ocrclass.h
|
|
|
|
include/tesseract/platform.h
|
|
|
|
include/tesseract/serialis.h
|
|
|
|
include/tesseract/strngs.h
|
|
|
|
include/tesseract/unichar.h
|
2017-04-20 19:50:53 +08:00
|
|
|
|
2018-10-31 02:58:50 +08:00
|
|
|
#${CMAKE_CURRENT_BINARY_DIR}/src/endianness.h
|
2017-04-20 19:50:53 +08:00
|
|
|
DESTINATION include/tesseract)
|
|
|
|
|
2019-05-09 01:17:43 +08:00
|
|
|
########################################
|
|
|
|
# uninstall target
|
|
|
|
########################################
|
|
|
|
if(NOT TARGET uninstall)
|
|
|
|
configure_file(
|
|
|
|
"${CMAKE_CURRENT_SOURCE_DIR}/cmake/templates/cmake_uninstall.cmake.in"
|
|
|
|
"${CMAKE_CURRENT_BINARY_DIR}/cmake_uninstall.cmake"
|
|
|
|
IMMEDIATE @ONLY)
|
|
|
|
|
|
|
|
add_custom_target(uninstall
|
|
|
|
COMMAND ${CMAKE_COMMAND} -P ${CMAKE_CURRENT_BINARY_DIR}/cmake_uninstall.cmake)
|
|
|
|
endif()
|
2017-04-20 19:50:53 +08:00
|
|
|
|
2015-09-06 05:47:32 +08:00
|
|
|
###############################################################################
|