equal
deleted
inserted
replaced
|
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 } |