[Qt-creator] qmake and backtick command arguments

Nikos Chantziaras realnc at gmail.com
Sun Feb 21 11:34:03 CET 2016


On 21/02/16 11:47, Andrzej Telszewski wrote:
> Hi,
>
> I'm trying to do something like this in .pro file:
> INCLUDEPATH += \
>    `php-config --includes`

Try the system() function in combination with the "$$" operator (for 
variable expansion):

   INCLUDEPATH += $$system(php-config --includes)




More information about the Qt-creator mailing list