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)

_______________________________________________
Qt-creator mailing list
[email protected]
http://lists.qt-project.org/mailman/listinfo/qt-creator

Reply via email to