My project is based on Qt (widgets) + Opencv. On Windows I compile it in msvc. In Linux g++. But with android I have a problem: Use Windows as a host machine. Install and configure Qt Creator for android. It work fine without opencv library on test project. But then I add a opencv lib in pro file have en errors “Can’t open library”. Part of test pro file:
INCLUDEPATH += C:\Lib\opencv\build_minGW\include
LIBS += -LC:\Lib\opencv\build_minGW\lib
LIBS += -lopencv_core2410 \
-lopencv_imgproc2410 \
-lopencv_highgui2410
Opencv library I build by mingw. What I do wrong?