Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

message( $${QMAKE_FILE_IN} ) did not print the current processing input file

Tags:

qt

qt4

I want to print the current processing file using QMAKE_FILE_IN variable how to do it.

like image 986
Talespin_Kit Avatar asked Oct 27 '25 13:10

Talespin_Kit


1 Answers

Try below message format

message($$QMAKE_FILE_IN)

you can add other text with variable as follow

message(qmake file in value = $$QMAKE_FILE_IN)
like image 61
Omkar Avatar answered Oct 30 '25 07:10

Omkar