mirror of
https://github.com/tesseract-ocr/tesseract.git
synced 2024-11-27 20:59:36 +08:00
bf0a83907b
git-svn-id: https://tesseract-ocr.googlecode.com/svn/trunk@910 d0cd1f9f-072b-0410-8dd7-cf729c803f20
23 lines
652 B
Makefile
23 lines
652 B
Makefile
AM_CPPFLAGS += -I$(top_srcdir)/ccutil -I$(top_srcdir)/ccstruct -I$(top_srcdir)/ccmain
|
|
if USE_OPENCL
|
|
AM_CPPFLAGS += -I$(OPENCL_HDR_PATH)
|
|
endif
|
|
noinst_HEADERS = \
|
|
openclwrapper.h oclkernels.h opencl_device_selection.h
|
|
|
|
if !USING_MULTIPLELIBS
|
|
noinst_LTLIBRARIES = libtesseract_opencl.la
|
|
else
|
|
lib_LTLIBRARIES = libtesseract_opencl.la
|
|
libtesseract_opencl_la_LDFLAGS = -version-info $(GENERIC_LIBRARY_VERSION)
|
|
libtesseract_opencl_la_LIBADD = \
|
|
../ccutil/libtesseract_ccutil.la \
|
|
../viewer/libtesseract_viewer.la
|
|
if USE_OPENCL
|
|
libtesseract_opencl_la_LDFLAGS += $(OPENCL_LIB)
|
|
endif
|
|
endif
|
|
|
|
libtesseract_opencl_la_SOURCES = \
|
|
openclwrapper.cpp
|