mkspecs/features/link_pkgconfig.prf
changeset 0 1918ee327afb
equal deleted inserted replaced
-1:000000000000 0:1918ee327afb
       
     1 # handle pkg-config files
       
     2 for(PKGCONFIG_LIB, $$list($$unique(PKGCONFIG))) {
       
     3     QMAKE_CXXFLAGS += $$system(pkg-config --cflags $$PKGCONFIG_LIB)
       
     4     QMAKE_CFLAGS += $$system(pkg-config --cflags $$PKGCONFIG_LIB)
       
     5     LIBS += $$system(pkg-config --libs $$PKGCONFIG_LIB)
       
     6 }