Installing a reusable component in Visual Studio?
Unsolved
QML and Qt Quick
-
Simple question from a newbie Qt user...
Qt documentation explains how to create a "reuseable component", like a special button, and then you put it's definition in a file with a name starting with a capital letter and with qml extension - like SpecialButton.qml
Then you can use this special button in your main.qml file. BUT.... there is one thing that I have not been able to find any doc or example of... how do I install or import or include my SpecialButton.qml file so that it will be found? In all my attempts, the debugger says that SpecialButton is undefined. I have a feeling that in the Qt Creator IDE this is handled in some automatic or simple way -- but how to do it in Visual Studio?