2012-03-23 04:01:33 +08:00
|
|
|
AM_CPPFLAGS += \
|
2007-03-08 04:03:40 +08:00
|
|
|
-I$(top_srcdir)/ccstruct -I$(top_srcdir)/ccutil \
|
|
|
|
-I$(top_srcdir)/cutil -I$(top_srcdir)/classify \
|
2014-01-10 01:41:11 +08:00
|
|
|
-I$(top_srcdir)/dict \
|
2007-03-08 04:03:40 +08:00
|
|
|
-I$(top_srcdir)/viewer
|
|
|
|
|
2012-03-03 07:51:33 +08:00
|
|
|
if VISIBILITY
|
|
|
|
AM_CPPFLAGS += -DTESS_EXPORTS \
|
|
|
|
-fvisibility=hidden -fvisibility-inlines-hidden
|
|
|
|
endif
|
|
|
|
|
2012-03-03 21:22:51 +08:00
|
|
|
noinst_HEADERS = \
|
2013-09-23 23:26:50 +08:00
|
|
|
associate.h chop.h \
|
|
|
|
chopper.h drawfx.h findseam.h gradechop.h \
|
|
|
|
language_model.h lm_consistency.h lm_pain_points.h lm_state.h \
|
2015-05-13 06:05:56 +08:00
|
|
|
measure.h \
|
|
|
|
outlines.h params_model.h plotedges.h \
|
2013-09-23 23:26:50 +08:00
|
|
|
render.h \
|
|
|
|
wordrec.h
|
2007-03-08 04:03:40 +08:00
|
|
|
|
2011-08-30 05:28:28 +08:00
|
|
|
if !USING_MULTIPLELIBS
|
|
|
|
noinst_LTLIBRARIES = libtesseract_wordrec.la
|
|
|
|
else
|
2010-05-26 22:20:20 +08:00
|
|
|
lib_LTLIBRARIES = libtesseract_wordrec.la
|
2011-08-30 05:28:28 +08:00
|
|
|
libtesseract_wordrec_la_LDFLAGS = -version-info $(GENERIC_LIBRARY_VERSION)
|
2011-10-17 03:39:54 +08:00
|
|
|
libtesseract_wordrec_la_LIBADD = \
|
2012-03-23 04:01:33 +08:00
|
|
|
../ccstruct/libtesseract_ccstruct.la \
|
|
|
|
../ccutil/libtesseract_ccutil.la \
|
|
|
|
../cutil/libtesseract_cutil.la \
|
|
|
|
../classify/libtesseract_classify.la \
|
|
|
|
../dict/libtesseract_dict.la \
|
|
|
|
../viewer/libtesseract_viewer.la
|
2011-08-30 05:28:28 +08:00
|
|
|
endif
|
|
|
|
|
2010-05-26 22:20:20 +08:00
|
|
|
libtesseract_wordrec_la_SOURCES = \
|
2013-09-23 23:26:50 +08:00
|
|
|
associate.cpp chop.cpp chopper.cpp \
|
|
|
|
drawfx.cpp findseam.cpp gradechop.cpp \
|
|
|
|
language_model.cpp lm_consistency.cpp lm_pain_points.cpp lm_state.cpp \
|
2015-05-13 06:05:56 +08:00
|
|
|
outlines.cpp params_model.cpp pieces.cpp \
|
2013-09-23 23:26:50 +08:00
|
|
|
plotedges.cpp render.cpp segsearch.cpp \
|
2012-02-02 11:01:38 +08:00
|
|
|
tface.cpp wordclass.cpp wordrec.cpp
|