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)