How to use Qt libraries in UWP project?

324 Views Asked by At

I have a UWP project for which I wish to use some of the QtCore and QtNetwork classes. I have successfully included the headers, and I added the "lib" folder of Qt in the Additional Library Directories option of the Linker. When trying to build the project I get a lot of errors like

LNK2019 unresolved external symbol __declspec(dllimport) public: __thiscall CLASSNAME etc etc

and LNK2001 errors with similar error strings. All the resources I found on the internet talk about qmake, .pro files, moc and other things I've never heard of, but they don't give me a real explanation of what to do to make this thing work. They only suggest to create a QtProject, but that is not possible as I am using UWP.

So my question can be reassumed as this: what do I have to do to import and use some Qt libraries in my non-Qt project the same way I would import generic 3rd-party libraries?

0

There are 0 best solutions below