forked from qt-creator/qt-creator
Refactor much of the code from Environment* classes to NameValue* classes to share it with the preprocessor macro settings. Change-Id: Ica4ee817aa338230c422b30d91240d266248d226 Reviewed-by: Tim Jenssen <tim.jenssen@qt.io>
31 lines
887 B
Plaintext
31 lines
887 B
Plaintext
shared|dll {
|
|
DEFINES += CLANGPCHMANAGER_LIB
|
|
} else {
|
|
DEFINES += CLANGPCHMANAGER_STATIC_LIB
|
|
}
|
|
|
|
INCLUDEPATH += $$PWD
|
|
|
|
HEADERS += \
|
|
$$PWD/clangindexingprojectsettings.h \
|
|
$$PWD/clangindexingsettingsmanager.h \
|
|
$$PWD/pchmanagerclient.h \
|
|
$$PWD/pchmanagernotifierinterface.h \
|
|
$$PWD/pchmanagerconnectionclient.h \
|
|
$$PWD/clangpchmanager_global.h \
|
|
$$PWD/preprocessormacrocollector.h \
|
|
$$PWD/projectupdater.h \
|
|
$$PWD/pchmanagerprojectupdater.h \
|
|
$$PWD/progressmanager.h \
|
|
$$PWD/progressmanagerinterface.h
|
|
|
|
SOURCES += \
|
|
$$PWD/clangindexingprojectsettings.cpp \
|
|
$$PWD/clangindexingsettingsmanager.cpp \
|
|
$$PWD/pchmanagerclient.cpp \
|
|
$$PWD/pchmanagernotifierinterface.cpp \
|
|
$$PWD/pchmanagerconnectionclient.cpp \
|
|
$$PWD/preprocessormacrocollector.cpp \
|
|
$$PWD/projectupdater.cpp \
|
|
$$PWD/pchmanagerprojectupdater.cpp
|