[Interest] Help a unix guy on windows qmake

Thiago Macieira thiago.macieira at intel.com
Wed Apr 21 22:16:34 CEST 2021


On Wednesday, 21 April 2021 10:39:01 PDT Giuseppe D'Angelo via Interest wrote:
> But no $X. I'm still not sure what $PROJ means.

The way the example was given, the string "$PROJ" will be written literally to 
the Makefile. Make will then interpret it as $(P)ROJ, which is likely not what 
you want.

$ gmake -f /dev/stdin <<<'all: ; @echo $PROJ'
ROJ
$ gmake -f /dev/stdin P=abc <<<'all: ; @echo $PROJ'
abcROJ


-- 
Thiago Macieira - thiago.macieira (AT) intel.com
  Software Architect - Intel DPG Cloud Engineering





More information about the Interest mailing list