mirror of
https://github.com/tesseract-ocr/tesseract.git
synced 2024-11-28 05:39:35 +08:00
7972b13e3a
The related code in training/util.h now uses the GOOGLE_TESSERACT macro to enable Google specific code to disable heap checking. Signed-off-by: Stefan Weil <sw@weilnetz.de>
21 lines
494 B
Makefile
21 lines
494 B
Makefile
AM_CPPFLAGS += -I$(top_srcdir)/cutil -I$(top_srcdir)/ccutil \
|
|
-I$(top_srcdir)/ccstruct -I$(top_srcdir)/viewer
|
|
|
|
if VISIBILITY
|
|
AM_CPPFLAGS += -DTESS_EXPORTS \
|
|
-fvisibility=hidden -fvisibility-inlines-hidden
|
|
endif
|
|
|
|
noinst_HEADERS = \
|
|
dawg.h dawg_cache.h dict.h matchdefs.h \
|
|
stopper.h trie.h
|
|
|
|
noinst_LTLIBRARIES = libtesseract_dict.la
|
|
|
|
libtesseract_dict_la_SOURCES = \
|
|
context.cpp \
|
|
dawg.cpp dawg_cache.cpp dict.cpp hyphen.cpp \
|
|
permdawg.cpp stopper.cpp trie.cpp
|
|
|
|
|