On Fri, May 23, 2014 at 05:36:43AM -0700, zdenop wrote:
> This was changed with implementation of autotools. Now it you need to use:
>
> g++ -ltesseract ...
>
> and if you use also some leptonica function in your code (which could be
> expected) add also -llept
Yes, it's completely standard. The library is called 'tesseract, so
you use -ltesseract. If the library is installed in a nonstandard
location, you need -L/path/to/tesseract-lib, and if the includes are
in a nonstandard location, you'll need -I/path/to/tesseract-includes
Nick