Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
I'm trying to learn more about qmake and pro files and I'm having a bad trying to understand the return of a few variables, for example, how to debug and see what is returning from _PRO_FILE_PWD_ or after the usage of $$replace, etc?
_PRO_FILE_PWD_
message($$_PRO_FILE_PWD_)
You can also run qmake in debug mode (with additional message and information) by calling it with -d or -d -d switches, e.g.
qmake
-d
-d -d
qmake -d myproject.pro
@kshegunov Thank you very much.