mirror of
https://github.com/tesseract-ocr/tesseract.git
synced 2024-11-24 02:59:07 +08:00
18ac7ae7ef
However, the output of the OpenCL build is garbage....
17 lines
562 B
Makefile
17 lines
562 B
Makefile
AM_CPPFLAGS += -I$(top_srcdir)/ccutil -I$(top_srcdir)/ccstruct -I$(top_srcdir)/ccmain $(OPENCL_CFLAGS)
|
|
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) $(OPENCL_LDFLAGS)
|
|
libtesseract_opencl_la_LIBADD = \
|
|
../ccutil/libtesseract_ccutil.la \
|
|
../viewer/libtesseract_viewer.la
|
|
endif
|
|
|
|
libtesseract_opencl_la_SOURCES = \
|
|
openclwrapper.cpp
|