tesseract/CMakeLists.txt

256 lines
7.0 KiB
CMake
Raw Normal View History

2015-09-06 05:47:32 +08:00
#
# tesseract
#
###############################################################################
#
# cmake settings
#
###############################################################################
2015-09-07 07:49:18 +08:00
cmake_minimum_required(VERSION 2.8.11)
2015-09-06 05:47:32 +08:00
# In-source builds are disabled.
if (${CMAKE_SOURCE_DIR} STREQUAL ${CMAKE_BINARY_DIR})
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()
set(CMAKE_MODULE_PATH "${CMAKE_MODULE_PATH};${CMAKE_SOURCE_DIR}/cmake")
set(EXECUTABLE_OUTPUT_PATH "${CMAKE_BINARY_DIR}/bin")
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)
set(VERSION_MAJOR 3)
set(VERSION_MINOR 05)
set(VERSION_PLAIN ${VERSION_MAJOR}.${VERSION_MINOR})
2016-01-26 19:04:29 +08:00
set(MINIMUM_LEPTONICA_VERSION 1.71)
if(NOT EXISTS ${PROJECT_SOURCE_DIR}/.cppan)
if (NOT Leptonica_DIR AND NOT MSVC)
find_package(PkgConfig REQUIRED)
pkg_check_modules(Leptonica REQUIRED lept)
else()
find_package(Leptonica ${MINIMUM_LEPTONICA_VERSION} REQUIRED CONFIG)
endif()
else()
if (STATIC)
set(CPPAN_BUILD_SHARED_LIBS 0)
else()
set(CPPAN_BUILD_SHARED_LIBS 1)
endif()
add_subdirectory(.cppan)
endif()
2015-09-06 05:47:32 +08:00
2015-09-07 07:49:18 +08:00
find_package(OpenCL QUIET)
2015-09-07 01:43:28 +08:00
option(BUILD_TRAINING_TOOLS "Build training tools" ON)
2015-09-06 05:47:32 +08:00
###############################################################################
#
# compiler and linker
#
###############################################################################
set(LIBRARY_TYPE SHARED)
if (STATIC)
set(LIBRARY_TYPE)
endif()
if (WIN32)
if (MSVC)
2015-11-30 16:52:21 +08:00
add_definitions(-D_CRT_SECURE_NO_WARNINGS)
2016-02-04 18:44:07 +08:00
2015-09-06 05:47:32 +08:00
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /MP")
endif()
2016-02-04 18:44:07 +08:00
2015-09-07 01:43:28 +08:00
set(LIB_Ws2_32 Ws2_32)
endif()
2015-09-07 07:49:18 +08:00
if (CYGWIN)
add_definitions(-D__CYGWIN__)
endif()
2015-09-07 01:43:28 +08:00
if (UNIX)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} --std=c++11")
2016-02-04 18:44:07 +08:00
2015-09-07 01:43:28 +08:00
set(LIB_pthread pthread)
2015-09-06 05:47:32 +08:00
endif()
###############################################################################
#
# configure
#
###############################################################################
set(AUTOCONFIG_SRC ${CMAKE_BINARY_DIR}/config_auto.h.in)
2015-09-07 01:43:28 +08:00
set(AUTOCONFIG ${CMAKE_BINARY_DIR}/config_auto.h)
2015-09-06 05:47:32 +08:00
include(Configure)
configure_file(${AUTOCONFIG_SRC} ${AUTOCONFIG} @ONLY)
2016-02-04 18:44:07 +08:00
set(INCLUDE_DIR
${CMAKE_SOURCE_DIR}/api
${CMAKE_SOURCE_DIR}/ccmain
${CMAKE_SOURCE_DIR}/ccstruct
${CMAKE_SOURCE_DIR}/ccutil
)
2015-09-06 05:47:32 +08:00
configure_file(
${CMAKE_SOURCE_DIR}/cmake/templates/TesseractConfig-version.cmake.in
${CMAKE_BINARY_DIR}/TesseractConfig-version.cmake @ONLY)
configure_file(
${CMAKE_SOURCE_DIR}/cmake/templates/TesseractConfig.cmake.in
2016-02-04 18:44:07 +08:00
${CMAKE_BINARY_DIR}/TesseractConfig.cmake @ONLY)
2015-09-06 05:47:32 +08:00
###############################################################################
#
# build
#
###############################################################################
2015-09-06 18:47:30 +08:00
include(BuildFunctions)
include(SourceGroups)
2015-09-06 05:47:32 +08:00
2015-09-07 01:43:28 +08:00
add_definitions(-DHAVE_CONFIG_H)
2015-09-06 05:47:32 +08:00
add_definitions(-D_SILENCE_STDEXT_HASH_DEPRECATION_WARNINGS=1)
add_definitions(-DUSE_STD_NAMESPACE=1)
add_definitions(-DWINDLLNAME="libtesseract${VERSION_MAJOR}${VERSION_MINOR}.dll")
include_directories(${Leptonica_INCLUDE_DIRS})
2015-09-07 01:43:28 +08:00
include_directories(${CMAKE_BINARY_DIR})
2015-09-06 18:47:30 +08:00
include_directories(api)
include_directories(arch)
2015-09-06 05:47:32 +08:00
include_directories(ccmain)
include_directories(ccstruct)
include_directories(ccutil)
include_directories(classify)
include_directories(cutil)
include_directories(dict)
include_directories(lstm)
2015-09-06 05:47:32 +08:00
include_directories(opencl)
include_directories(textord)
include_directories(vs2010/port)
include_directories(viewer)
include_directories(wordrec)
########################################
2015-09-06 18:47:30 +08:00
# LIBRARY tesseract
2015-09-06 05:47:32 +08:00
########################################
string(SUBSTRING ${VERSION_MINOR} 0 1 VERSION_MINOR_0)
string(SUBSTRING ${VERSION_MINOR} 1 1 VERSION_MINOR_1)
2015-09-06 18:47:30 +08:00
file(GLOB tesseract_src
arch/*.cpp
2016-07-04 04:34:14 +08:00
ccmain/*.cpp
ccstruct/*.cpp
ccutil/*.cpp
classify/*.cpp
cutil/*.cpp
dict/*.cpp
lstm/*.cpp
2016-07-04 04:34:14 +08:00
opencl/*.cpp
textord/*.cpp
viewer/*.cpp
wordrec/*.cpp
2015-09-06 18:47:30 +08:00
)
file(GLOB tesseract_hdr
2016-07-04 04:34:14 +08:00
api/*.h
arch/*.h
2016-07-04 04:34:14 +08:00
ccmain/*.h
ccstruct/*.h
ccutil/*.h
classify/*.h
cutil/*.h
dict/*.h
lstm/*.h
2016-07-04 04:34:14 +08:00
opencl/*.h
textord/*.h
viewer/*.h
wordrec/*.h
2015-09-06 18:47:30 +08:00
)
2015-09-07 01:43:28 +08:00
if (WIN32)
file(GLOB tesseract_win32_src "vs2010/port/*.cpp")
file(GLOB tesseract_win32_hdr "vs2010/port/*.h")
set(tesseract_src ${tesseract_src} ${tesseract_win32_src})
set(tesseract_hdr ${tesseract_hdr} ${tesseract_win32_hdr})
endif()
2015-09-06 18:47:30 +08:00
set(tesseract_src ${tesseract_src}
2015-09-06 05:47:32 +08:00
api/baseapi.cpp
api/capi.cpp
api/renderer.cpp
api/pdfrenderer.cpp
)
add_library (tesseract ${LIBRARY_TYPE} ${tesseract_src} ${tesseract_hdr})
if (NOT STATIC)
target_compile_definitions (tesseract
PRIVATE -DTESS_EXPORTS
INTERFACE -DTESS_IMPORTS
)
set_target_properties (tesseract PROPERTIES WINDOWS_EXPORT_ALL_SYMBOLS True)
endif()
target_link_libraries (tesseract ${LIB_Ws2_32} ${LIB_pthread})
set_target_properties (tesseract PROPERTIES VERSION ${VERSION_MAJOR}.${VERSION_MINOR_0}.${VERSION_MINOR_1})
set_target_properties (tesseract PROPERTIES SOVERSION ${VERSION_MAJOR}.${VERSION_MINOR_0}.${VERSION_MINOR_1})
if (WIN32)
2015-09-07 01:43:28 +08:00
set_target_properties (tesseract PROPERTIES OUTPUT_NAME tesseract${VERSION_MAJOR}${VERSION_MINOR})
set_target_properties (tesseract PROPERTIES DEBUG_OUTPUT_NAME tesseract${VERSION_MAJOR}${VERSION_MINOR}d)
endif()
2015-09-06 05:47:32 +08:00
2016-09-05 23:10:56 +08:00
if (NOT CPPAN_BUILD)
target_link_libraries (tesseract ${Leptonica_LIBRARIES})
export(TARGETS tesseract FILE ${CMAKE_BINARY_DIR}/TesseractTargets.cmake)
else()
2016-12-23 03:30:16 +08:00
target_link_libraries (tesseract pvt.cppan.demo.danbloomberg.leptonica)
add_dependencies (tesseract cppan)
file(WRITE ${CMAKE_BINARY_DIR}/TesseractTargets.cmake "include(${CMAKE_BINARY_DIR}/cppan.cmake)\n")
export(TARGETS tesseract APPEND FILE ${CMAKE_BINARY_DIR}/TesseractTargets.cmake)
endif()
2015-09-06 05:47:32 +08:00
########################################
# EXECUTABLE tesseractmain
########################################
set(tesseractmain_src
api/tesseractmain.cpp
vs2010/tesseract/resource.h
vs2010/tesseract/tesseract.rc
)
add_executable (tesseractmain ${tesseractmain_src})
target_link_libraries (tesseractmain tesseract)
set_target_properties (tesseractmain PROPERTIES OUTPUT_NAME tesseract)
2015-09-06 05:47:32 +08:00
2015-09-06 18:47:30 +08:00
########################################
if (BUILD_TRAINING_TOOLS)
2015-09-06 18:47:30 +08:00
add_subdirectory(training)
endif()
2015-09-06 18:47:30 +08:00
2015-09-06 05:47:32 +08:00
###############################################################################