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?!
I solved it with installing Qt locally and adding it to the
PATH
.