forked from qt-creator/qt-creator
ProjectPart: Add meta information
Add displayname and project file path and a pointer back to the project. Change-Id: Ic9a18f52a6291493bd3a95fd3456ed0e1a3c63e3 Reviewed-by: Erik Verbruggen <erik.verbruggen@digia.com>
This commit is contained in:
committed by
Erik Verbruggen
parent
fe62ad287f
commit
e462c9620d
@@ -100,12 +100,14 @@ using namespace ProjectExplorer;
|
||||
*/
|
||||
|
||||
ProjectPart::ProjectPart()
|
||||
: cVersion(C89)
|
||||
: project(0)
|
||||
, cVersion(C89)
|
||||
, cxxVersion(CXX11)
|
||||
, cxxExtensions(NoExtensions)
|
||||
, qtVersion(UnknownQt)
|
||||
, cWarningFlags(ProjectExplorer::ToolChain::WarningsDefault)
|
||||
, cxxWarningFlags(ProjectExplorer::ToolChain::WarningsDefault)
|
||||
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
@@ -102,6 +102,9 @@ public:
|
||||
typedef QSharedPointer<ProjectPart> Ptr;
|
||||
|
||||
public:
|
||||
QString displayName;
|
||||
QString projectFile;
|
||||
ProjectExplorer::Project *project;
|
||||
QList<ProjectFile> files;
|
||||
QByteArray defines;
|
||||
QStringList includePaths;
|
||||
|
||||
Reference in New Issue
Block a user