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:
Qt Code:
  1. load(qt_parts)
  2.  
  3. # We need accessibility
  4. !contains(QT_CONFIG, accessibility) {
  5. error("Building Qt without accessibility is not supported for desktop components.")
  6. }
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!