Hi,
Suppose I want to execute chmod command or execute the output binary file, or do some other operations after compile finished.
What shall I do to the pro file?
Thanks.
Printable View
Hi,
Suppose I want to execute chmod command or execute the output binary file, or do some other operations after compile finished.
What shall I do to the pro file?
Thanks.
AFAIK you can't, since the pro file is a project definition file and it is use the qmake to generate make files - so why should it start some programs after generating make files?
What you can do is create a shell script that calls qmake/make, and afterward call anything else you wish.