[tesseract-ocr] How to correctly define CMakeLists.txt for Tesseract?

2024-02-17 Thread Raphael Stonehorse
As described and discussed here: https://stackoverflow.com/questions/78011753/how-to-correctly-define-cmakelists-txt-for-tesseract I've been trying to use CMake for Tesseract compilation and building With this CMakeLists.txt : cmake_minimum_required(VERSION 3.5) project(BasicExample)

Re: [tesseract-ocr] How to correctly define CMakeLists.txt for Tesseract?

2024-02-17 Thread Zdenko Podobny
First of all: you should use tools you are familiar with. Your CMake configuration (CMakeLists.txt) does not look that way (you would use CMake to check required libraries, not PkgConfig, you would not hardcode curl for linking etc...), Next. you should provide all the details to replicate the pro