mirror of
https://github.com/tesseract-ocr/tesseract.git
synced 2024-12-03 00:49:01 +08:00
27 lines
788 B
Makefile
27 lines
788 B
Makefile
AM_CPPFLAGS += -I$(top_srcdir)/ccutil -I$(top_srcdir)/viewer -DUSE_STD_NAMESPACE
|
|
|
|
if VISIBILITY
|
|
AM_CPPFLAGS += -DTESS_EXPORTS \
|
|
-fvisibility=hidden -fvisibility-inlines-hidden
|
|
endif
|
|
|
|
noinst_HEADERS = \
|
|
bitvec.h callcpp.h const.h cutil.h cutil_class.h danerror.h efio.h \
|
|
emalloc.h globals.h \
|
|
oldlist.h structures.h
|
|
|
|
if !USING_MULTIPLELIBS
|
|
noinst_LTLIBRARIES = libtesseract_cutil.la
|
|
else
|
|
lib_LTLIBRARIES = libtesseract_cutil.la
|
|
libtesseract_cutil_la_LDFLAGS = -version-info $(GENERIC_LIBRARY_VERSION)
|
|
libtesseract_cutil_la_LIBADD = \
|
|
../ccutil/libtesseract_ccutil.la \
|
|
../viewer/libtesseract_viewer.la
|
|
endif
|
|
|
|
libtesseract_cutil_la_SOURCES = \
|
|
bitvec.cpp callcpp.cpp cutil.cpp cutil_class.cpp danerror.cpp efio.cpp \
|
|
emalloc.cpp \
|
|
oldlist.cpp structures.cpp
|