QT .pro file: How to change default include path for MAC frameworks
问题 My .pro file looks like this: QT += core gui widgets SOURCES += a.cpp HEADERS += a.h FORMS += a.ui #Locally compiled Qt framework. Qt/out/{QtCore.framework,QtNetwork.framework..} QMAKE_LFLAGS += -L./Qt/lib/ QMAKE_CXXFLAGS += -F./Qt/lib/ macx { QMAKE_MAC_SDK = macosx10.9 LIBS += -framework QtCore -framework QtNetwork -framework QtGui -framework QtWidgets } I want to use frameworks compiled locally, but QT5.5 automatically includes framework from QT5.5.0 install directory ... I see a.cpp