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 -- You received this message because you are subscribed to the Google Groups "tesseract-ocr" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/tesseract-ocr. To view this discussion on the web visit https://groups.google.com/d/msgid/tesseract-ocr/20140523153120.GB868%40manta.lan. For more options, visit https://groups.google.com/d/optout.

