2012-03-23 04:01:33 +08:00
|
|
|
AM_CPPFLAGS += \
|
2010-11-24 02:34:14 +08:00
|
|
|
-DUSE_STD_NAMESPACE \
|
2007-03-08 04:03:40 +08:00
|
|
|
-I$(top_srcdir)/ccutil -I$(top_srcdir)/ccstruct \
|
|
|
|
-I$(top_srcdir)/image -I$(top_srcdir)/viewer \
|
2011-10-17 03:39:54 +08:00
|
|
|
-I$(top_srcdir)/classify -I$(top_srcdir)/dict \
|
2007-03-08 04:03:40 +08:00
|
|
|
-I$(top_srcdir)/wordrec -I$(top_srcdir)/cutil \
|
2010-11-24 02:34:14 +08:00
|
|
|
-I$(top_srcdir)/neural_networks/runtime -I$(top_srcdir)/cube \
|
2007-03-08 04:03:40 +08:00
|
|
|
-I$(top_srcdir)/textord
|
2013-09-30 04:48:06 +08:00
|
|
|
|
2012-03-03 07:51:33 +08:00
|
|
|
if VISIBILITY
|
|
|
|
AM_CPPFLAGS += -DTESS_EXPORTS \
|
|
|
|
-fvisibility=hidden -fvisibility-inlines-hidden
|
|
|
|
endif
|
2007-03-08 04:03:40 +08:00
|
|
|
|
2012-03-07 06:41:43 +08:00
|
|
|
include_HEADERS = \
|
2013-09-30 04:48:06 +08:00
|
|
|
thresholder.h ltrresultiterator.h pageiterator.h resultiterator.h \
|
|
|
|
osdetect.h
|
2012-03-03 21:22:51 +08:00
|
|
|
noinst_HEADERS = \
|
2012-03-07 06:41:43 +08:00
|
|
|
control.h cube_reco_context.h cubeclassifier.h docqual.h \
|
2013-09-30 04:48:06 +08:00
|
|
|
equationdetect.h fixspace.h imgscale.h mutableiterator.h \
|
2012-03-07 06:41:43 +08:00
|
|
|
output.h paragraphs.h paragraphs_internal.h paramsd.h pgedit.h \
|
|
|
|
reject.h scaleimg.h tessbox.h tessedit.h tesseractclass.h \
|
2013-09-23 23:26:50 +08:00
|
|
|
tesseract_cube_combiner.h tessvars.h werdit.h
|
2007-03-08 04:03:40 +08:00
|
|
|
|
2011-08-30 05:28:28 +08:00
|
|
|
if !USING_MULTIPLELIBS
|
|
|
|
noinst_LTLIBRARIES = libtesseract_main.la
|
|
|
|
else
|
2010-05-26 22:20:20 +08:00
|
|
|
lib_LTLIBRARIES = libtesseract_main.la
|
2011-08-30 05:28:28 +08:00
|
|
|
libtesseract_main_la_LDFLAGS = -version-info $(GENERIC_LIBRARY_VERSION)
|
2011-10-17 03:39:54 +08:00
|
|
|
libtesseract_main_la_LIBADD = \
|
|
|
|
../wordrec/libtesseract_wordrec.la \
|
|
|
|
../textord/libtesseract_textord.la \
|
|
|
|
../ccutil/libtesseract_ccutil.la \
|
|
|
|
../ccstruct/libtesseract_ccstruct.la \
|
|
|
|
../viewer/libtesseract_viewer.la \
|
|
|
|
../dict/libtesseract_dict.la \
|
|
|
|
../classify/libtesseract_classify.la \
|
|
|
|
../cutil/libtesseract_cutil.la \
|
|
|
|
../cube/libtesseract_cube.la
|
|
|
|
|
2011-08-30 05:28:28 +08:00
|
|
|
endif
|
|
|
|
|
2010-05-26 22:20:20 +08:00
|
|
|
libtesseract_main_la_SOURCES = \
|
2010-11-24 02:34:14 +08:00
|
|
|
adaptions.cpp applybox.cpp \
|
2012-02-02 10:59:49 +08:00
|
|
|
control.cpp cube_control.cpp cube_reco_context.cpp cubeclassifier.cpp \
|
|
|
|
docqual.cpp equationdetect.cpp fixspace.cpp fixxht.cpp \
|
|
|
|
imgscale.cpp ltrresultiterator.cpp \
|
|
|
|
osdetect.cpp output.cpp pageiterator.cpp pagesegmain.cpp \
|
|
|
|
pagewalk.cpp paragraphs.cpp paramsd.cpp pgedit.cpp recogtraining.cpp \
|
2013-09-23 23:26:50 +08:00
|
|
|
reject.cpp resultiterator.cpp scaleimg.cpp superscript.cpp \
|
2012-02-02 10:59:49 +08:00
|
|
|
tesseract_cube_combiner.cpp \
|
2009-07-11 10:03:51 +08:00
|
|
|
tessbox.cpp tessedit.cpp tesseractclass.cpp tessvars.cpp \
|
2011-03-19 05:52:08 +08:00
|
|
|
tfacepp.cpp thresholder.cpp \
|
2010-11-24 02:34:14 +08:00
|
|
|
werdit.cpp
|