Hello all,
I have some trouble understanding the installation process for qt quick desktop components with qt5.
I have downloaded the repository, but when I run "qmake qtdesktopcomponents.pro" I receive the warning: "Building Qt without accessibility is not supported for desktop components."
Here is the pro file:
load(qt_parts)
# We need accessibility
!contains(QT_CONFIG, accessibility) {
error("Building Qt without accessibility is not supported for desktop components.")
}
load(qt_parts)
# We need accessibility
!contains(QT_CONFIG, accessibility) {
error("Building Qt without accessibility is not supported for desktop components.")
}
To copy to clipboard, switch view to plain text mode
Please help me understand :
1. What is accessibility for ?
2. What is load(qt_parts) for ?
If i ignore the warning and continue with: make install - then i receive "make: *** No rule to make target `install'. Stop."
Thank you!
Bookmarks