Hello!!

I am running a Qt Application in Visual Studio and I would like to combine my QML code into the Qt Application.

I have added qml file in the resources folder of the Qt application and tried to combine it with the following code:


QQuickView *view = new QQuickView();
view->setSource(QUrl("main.qml"));

When I use this code I get 24 unexpected external symbol errors. I would really appreciate the help!

Thank you!