Hi there,

in my qmake pro file, I want to install the library binary to some path and the header files to some other path. So far I can install the library file with

Qt Code:
  1. target.path += mylibrary/libs
  2. INSTALLS += target
To copy to clipboard, switch view to plain text mode 

but how do I set the headers? I tried
Qt Code:
  1. INSTALLS += target headers
To copy to clipboard, switch view to plain text mode 
but that doesn't work.

Andreas