forked from qt-creator/qt-creator
We went the filtering of the header path outside of the compiler options builder so merge the PCHs. Task-number: QTCREATORBUG-21693 Change-Id: Ia1126813a5049e39d7c6e7d60bf449aa17012d02 Reviewed-by: Ivan Donchevskii <ivan.donchevskii@qt.io>
28 lines
729 B
Plaintext
28 lines
729 B
Plaintext
shared {
|
|
DEFINES += CPPTOOLS_LIBRARY
|
|
} else {
|
|
DEFINES += CPPTOOLS_STATIC_LIBRARY
|
|
}
|
|
|
|
HEADERS += \
|
|
$$PWD/cppprojectfile.h \
|
|
$$PWD/senddocumenttracker.h \
|
|
$$PWD/projectpart.h \
|
|
$$PWD/compileroptionsbuilder.h \
|
|
$$PWD/cppprojectfilecategorizer.h \
|
|
$$PWD/projectinfo.h \
|
|
$$PWD/cppprojectinfogenerator.cpp \
|
|
$$PWD/cppprojectpartchooser.h \
|
|
$$PWD/headerpathfilter.h
|
|
|
|
SOURCES += \
|
|
$$PWD/cppprojectfile.cpp \
|
|
$$PWD/senddocumenttracker.cpp \
|
|
$$PWD/projectpart.cpp \
|
|
$$PWD/compileroptionsbuilder.cpp \
|
|
$$PWD/cppprojectfilecategorizer.cpp \
|
|
$$PWD/projectinfo.cpp \
|
|
$$PWD/cppprojectinfogenerator.cpp \
|
|
$$PWD/cppprojectpartchooser.cpp \
|
|
$$PWD/headerpathfilter.cpp
|