I imported a qml file, say A in another qml to say B. Whenever I make some changes to A, it is not reflected in the application. I have to clean and rebuild again to see the changes I made, which is very time consuming. Is there an easier and more efficient way to do this, so time can be saved.
Or another way of saying this:
qrc files are not added depending on the Makefile in debug_and_release mode
Example
A.qml
Rectangle {
id:xyz
Button
{
id: ButtonA
}
}
B.qml
Rectangle{
A {
id:abc
}
}
I am using qt 4, qtquick 1.0.
source
share