How to include a lib with dependencies to QT

308 views Asked by At

I am creating a Visual C++ sample project where i need to include a third party library.

I added the lib and added the include directory.

But my problem is now, that the header files of the library have the following line in their header files:

#include <QtCore/QVector>

and the compiler error is:

error C1083: Cannot open include file: 'QtCore/QVector': No such file or directory

I have the used dlls, but I am stuck how to include them?!

1

There are 1 answers

0
S.Spieker On BEST ANSWER

I solved it with installing Qt locally and adding it to the PATH.