Hi,

I have these files:
Qt Code:
  1. /root
  2. root.pro
  3. /src
  4. /script.sh
  5. /desktop_entry.desktop
To copy to clipboard, switch view to plain text mode 

How can I...
- Copy script.sh to /usr/bin/
- Give execution rights to /usr/bin/script.sh
- Copy desktop_entry.desktop to /usr/share/xsessions
... using qmake?

If I use app TEMPLATE in root.pro, qmake generates a Makefile that compiles a non-existent C++ code.

Can I implement my idea using INSTALLS variable?