How to print contents of .pro ?
-
OK , to avoid responses "you have asked this before "...
I know I asked this before but I lost the code...
I want to print the contents of CONFIG option in .pro file.
How ?
i did try all theseprint (CONFIG)
message (CONFIG)
message (link_pkgconfig)
message ("ENTRY MDI_BY.pro modules core gui bluetooth concurrent")
message(when the Makefile is processed.) -
-
OK , to avoid responses "you have asked this before "...
I know I asked this before but I lost the code...
I want to print the contents of CONFIG option in .pro file.
How ?
i did try all theseprint (CONFIG)
message (CONFIG)
message (link_pkgconfig)
message ("ENTRY MDI_BY.pro modules core gui bluetooth concurrent")
message(when the Makefile is processed.)@AnneRanch said in How to print contents of .pro ?:
message (CONFIG)
Use this:
message($$CONFIG)P.S. I have spent sometime for this. Maybe direct answer will be useful for someone.