2017-02-09 11:40:25 +01:00
|
|
|
/****************************************************************************
|
|
|
|
|
**
|
|
|
|
|
** Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
|
** Contact: https://www.qt.io/licensing/
|
|
|
|
|
**
|
|
|
|
|
** This file is part of Qt Creator.
|
|
|
|
|
**
|
|
|
|
|
** Commercial License Usage
|
|
|
|
|
** Licensees holding valid commercial Qt licenses may use this file in
|
|
|
|
|
** accordance with the commercial license agreement provided with the
|
|
|
|
|
** Software or, alternatively, in accordance with the terms contained in
|
|
|
|
|
** a written agreement between you and The Qt Company. For licensing terms
|
|
|
|
|
** and conditions see https://www.qt.io/terms-conditions. For further
|
|
|
|
|
** information use the contact form at https://www.qt.io/contact-us.
|
|
|
|
|
**
|
|
|
|
|
** GNU General Public License Usage
|
|
|
|
|
** Alternatively, this file may be used under the terms of the GNU
|
|
|
|
|
** General Public License version 3 as published by the Free Software
|
|
|
|
|
** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
|
|
|
|
|
** included in the packaging of this file. Please review the following
|
|
|
|
|
** information to ensure the GNU General Public License requirements will
|
|
|
|
|
** be met: https://www.gnu.org/licenses/gpl-3.0.html.
|
|
|
|
|
**
|
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include "qmakeprojectmanager_global.h"
|
|
|
|
|
#include "proparser/prowriter.h"
|
|
|
|
|
#include "proparser/profileevaluator.h"
|
|
|
|
|
|
|
|
|
|
#include <coreplugin/idocument.h>
|
|
|
|
|
#include <cpptools/generatedcodemodelsupport.h>
|
|
|
|
|
|
|
|
|
|
#include <QHash>
|
|
|
|
|
#include <QStringList>
|
|
|
|
|
#include <QMap>
|
|
|
|
|
#include <QFutureWatcher>
|
|
|
|
|
|
2017-02-09 15:09:25 +01:00
|
|
|
#include <memory>
|
|
|
|
|
|
2018-11-30 10:31:56 +02:00
|
|
|
namespace Utils {
|
|
|
|
|
class FileName;
|
|
|
|
|
class FileSystemWatcher;
|
|
|
|
|
} // namespace Utils;
|
|
|
|
|
|
2017-02-09 11:40:25 +01:00
|
|
|
namespace QtSupport { class ProFileReader; }
|
|
|
|
|
namespace ProjectExplorer { class RunConfiguration; }
|
|
|
|
|
|
|
|
|
|
namespace QmakeProjectManager {
|
|
|
|
|
class QmakeBuildConfiguration;
|
2017-02-09 16:45:36 +01:00
|
|
|
class QmakeProFile;
|
2017-02-09 11:40:25 +01:00
|
|
|
class QmakeProject;
|
|
|
|
|
|
|
|
|
|
// Type of projects
|
|
|
|
|
enum class ProjectType {
|
|
|
|
|
Invalid = 0,
|
|
|
|
|
ApplicationTemplate,
|
|
|
|
|
StaticLibraryTemplate,
|
|
|
|
|
SharedLibraryTemplate,
|
|
|
|
|
ScriptTemplate,
|
|
|
|
|
AuxTemplate,
|
|
|
|
|
SubDirsTemplate
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// Other variables of interest
|
|
|
|
|
enum class Variable {
|
|
|
|
|
Defines = 1,
|
|
|
|
|
IncludePath,
|
|
|
|
|
CppFlags,
|
2017-11-03 12:26:21 +01:00
|
|
|
CFlags,
|
2019-01-04 09:07:55 +01:00
|
|
|
ExactSource,
|
|
|
|
|
CumulativeSource,
|
2017-02-09 11:40:25 +01:00
|
|
|
ExactResource,
|
|
|
|
|
CumulativeResource,
|
|
|
|
|
UiDir,
|
|
|
|
|
HeaderExtension,
|
|
|
|
|
CppExtension,
|
|
|
|
|
MocDir,
|
|
|
|
|
PkgConfig,
|
|
|
|
|
PrecompiledHeader,
|
|
|
|
|
LibDirectories,
|
|
|
|
|
Config,
|
|
|
|
|
Qt,
|
|
|
|
|
QmlImportPath,
|
|
|
|
|
QmlDesignerImportPath,
|
|
|
|
|
Makefile,
|
|
|
|
|
ObjectExt,
|
|
|
|
|
ObjectsDir,
|
|
|
|
|
Version,
|
|
|
|
|
TargetExt,
|
|
|
|
|
TargetVersionExt,
|
|
|
|
|
StaticLibExtension,
|
|
|
|
|
ShLibExtension,
|
|
|
|
|
AndroidArch,
|
|
|
|
|
AndroidDeploySettingsFile,
|
|
|
|
|
AndroidPackageSourceDir,
|
|
|
|
|
AndroidExtraLibs,
|
|
|
|
|
IsoIcons,
|
|
|
|
|
QmakeProjectName,
|
|
|
|
|
QmakeCc,
|
|
|
|
|
QmakeCxx
|
|
|
|
|
};
|
|
|
|
|
uint qHash(Variable key, uint seed = 0);
|
|
|
|
|
|
|
|
|
|
namespace Internal {
|
|
|
|
|
class QmakeEvalInput;
|
|
|
|
|
class QmakeEvalResult;
|
|
|
|
|
class QmakePriFileEvalResult;
|
2017-02-09 15:43:06 +01:00
|
|
|
} // namespace Internal;
|
2017-02-09 11:40:25 +01:00
|
|
|
|
2017-02-15 13:44:13 +01:00
|
|
|
class InstallsList;
|
2017-02-09 11:40:25 +01:00
|
|
|
|
|
|
|
|
// Implements ProjectNode for qmake .pri files
|
2017-02-10 09:56:33 +01:00
|
|
|
class QMAKEPROJECTMANAGER_EXPORT QmakePriFile
|
2017-02-09 11:40:25 +01:00
|
|
|
{
|
|
|
|
|
public:
|
2017-02-09 16:45:36 +01:00
|
|
|
QmakePriFile(QmakeProject *project, QmakeProFile *qmakeProFile, const Utils::FileName &filePath);
|
2017-02-10 09:56:33 +01:00
|
|
|
virtual ~QmakePriFile();
|
2017-02-09 11:40:25 +01:00
|
|
|
|
2017-02-09 15:35:19 +01:00
|
|
|
Utils::FileName filePath() const;
|
|
|
|
|
Utils::FileName directoryPath() const;
|
2017-02-15 10:24:32 +01:00
|
|
|
virtual QString displayName() const;
|
2017-02-09 15:35:19 +01:00
|
|
|
|
2017-02-09 17:02:47 +01:00
|
|
|
QmakePriFile *parent() const;
|
2017-02-15 10:24:32 +01:00
|
|
|
QmakeProject *project() const;
|
2017-02-09 17:02:47 +01:00
|
|
|
QVector<QmakePriFile *> children() const;
|
2017-02-15 12:24:57 +01:00
|
|
|
|
|
|
|
|
QmakePriFile *findPriFile(const Utils::FileName &fileName);
|
2017-11-02 15:23:37 +01:00
|
|
|
const QmakePriFile *findPriFile(const Utils::FileName &fileName) const;
|
2017-02-15 12:24:57 +01:00
|
|
|
|
2017-02-15 14:47:30 +01:00
|
|
|
bool knowsFile(const Utils::FileName &filePath) const;
|
|
|
|
|
|
2017-02-10 09:56:33 +01:00
|
|
|
void makeEmpty();
|
2017-02-09 17:02:47 +01:00
|
|
|
|
2017-02-15 12:52:36 +01:00
|
|
|
QSet<Utils::FileName> files(const ProjectExplorer::FileType &type) const;
|
|
|
|
|
|
2017-02-09 11:40:25 +01:00
|
|
|
void update(const Internal::QmakePriFileEvalResult &result);
|
|
|
|
|
|
2017-12-20 17:48:37 +01:00
|
|
|
bool canAddSubProject(const QString &proFilePath) const;
|
2017-02-09 11:40:25 +01:00
|
|
|
|
2017-12-20 17:48:37 +01:00
|
|
|
bool addSubProject(const QString &proFile);
|
|
|
|
|
bool removeSubProjects(const QString &proFilePath);
|
2017-02-09 11:40:25 +01:00
|
|
|
|
2017-12-20 17:48:37 +01:00
|
|
|
bool addFiles(const QStringList &filePaths, QStringList *notAdded = nullptr);
|
|
|
|
|
bool removeFiles(const QStringList &filePaths, QStringList *notRemoved = nullptr);
|
|
|
|
|
bool deleteFiles(const QStringList &filePaths);
|
|
|
|
|
bool canRenameFile(const QString &filePath, const QString &newFilePath);
|
|
|
|
|
bool renameFile(const QString &filePath, const QString &newFilePath);
|
2017-02-09 11:40:25 +01:00
|
|
|
|
|
|
|
|
bool setProVariable(const QString &var, const QStringList &values,
|
|
|
|
|
const QString &scope = QString(),
|
|
|
|
|
int flags = QmakeProjectManager::Internal::ProWriter::ReplaceValues);
|
|
|
|
|
|
|
|
|
|
bool folderChanged(const QString &changedFolder, const QSet<Utils::FileName> &newFiles);
|
|
|
|
|
|
2017-12-20 17:48:37 +01:00
|
|
|
bool deploysFolder(const QString &folder) const;
|
2017-02-09 11:40:25 +01:00
|
|
|
|
2017-02-09 16:45:36 +01:00
|
|
|
QmakeProFile *proFile() const;
|
2017-02-10 11:21:58 +01:00
|
|
|
QVector<QmakePriFile *> subPriFilesExact() const;
|
2017-02-09 11:40:25 +01:00
|
|
|
|
|
|
|
|
// Set by parent
|
|
|
|
|
bool includedInExactParse() const;
|
|
|
|
|
|
|
|
|
|
static QSet<Utils::FileName> recursiveEnumerate(const QString &folder);
|
|
|
|
|
|
2017-02-09 15:09:25 +01:00
|
|
|
void scheduleUpdate();
|
|
|
|
|
|
2017-02-09 11:40:25 +01:00
|
|
|
protected:
|
|
|
|
|
void setIncludedInExactParse(bool b);
|
|
|
|
|
static QStringList varNames(ProjectExplorer::FileType type, QtSupport::ProFileReader *readerExact);
|
|
|
|
|
static QStringList varNamesForRemoving();
|
|
|
|
|
static QString varNameForAdding(const QString &mimeType);
|
|
|
|
|
static QSet<Utils::FileName> filterFilesProVariables(ProjectExplorer::FileType fileType, const QSet<Utils::FileName> &files);
|
|
|
|
|
static QSet<Utils::FileName> filterFilesRecursiveEnumerata(ProjectExplorer::FileType fileType, const QSet<Utils::FileName> &files);
|
|
|
|
|
|
|
|
|
|
enum ChangeType {
|
|
|
|
|
AddToProFile,
|
|
|
|
|
RemoveFromProFile
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
enum class Change { Save, TestOnly };
|
|
|
|
|
bool renameFile(const QString &oldName,
|
|
|
|
|
const QString &newName,
|
|
|
|
|
const QString &mimeType,
|
|
|
|
|
Change mode = Change::Save);
|
|
|
|
|
void changeFiles(const QString &mimeType,
|
|
|
|
|
const QStringList &filePaths,
|
|
|
|
|
QStringList *notChanged,
|
|
|
|
|
ChangeType change,
|
|
|
|
|
Change mode = Change::Save);
|
|
|
|
|
|
2017-02-09 17:02:47 +01:00
|
|
|
void addChild(QmakePriFile *pf);
|
2017-02-09 11:40:25 +01:00
|
|
|
|
2017-02-09 15:09:25 +01:00
|
|
|
private:
|
2017-02-09 17:02:47 +01:00
|
|
|
void setParent(QmakePriFile *p);
|
|
|
|
|
|
2017-02-09 11:40:25 +01:00
|
|
|
bool prepareForChange();
|
|
|
|
|
static bool ensureWriteableProFile(const QString &file);
|
|
|
|
|
static QPair<ProFile *, QStringList> readProFile(const QString &file);
|
|
|
|
|
static QPair<ProFile *, QStringList> readProFileFromContents(const QString &contents);
|
|
|
|
|
void save(const QStringList &lines);
|
|
|
|
|
bool priFileWritable(const QString &absoluteFilePath);
|
|
|
|
|
bool saveModifiedEditors();
|
|
|
|
|
QStringList formResources(const QString &formFile) const;
|
|
|
|
|
static QStringList baseVPaths(QtSupport::ProFileReader *reader, const QString &projectDir, const QString &buildDir);
|
|
|
|
|
static QStringList fullVPaths(const QStringList &baseVPaths, QtSupport::ProFileReader *reader, const QString &qmakeVariable, const QString &projectDir);
|
|
|
|
|
static void extractSources(
|
2017-08-14 18:30:29 +02:00
|
|
|
QHash<int, Internal::QmakePriFileEvalResult *> proToResult,
|
2017-02-09 11:40:25 +01:00
|
|
|
Internal::QmakePriFileEvalResult *fallback,
|
|
|
|
|
QVector<ProFileEvaluator::SourceFile> sourceFiles, ProjectExplorer::FileType type);
|
|
|
|
|
static void extractInstalls(
|
2017-08-14 18:30:29 +02:00
|
|
|
QHash<int, Internal::QmakePriFileEvalResult *> proToResult,
|
2017-02-09 11:40:25 +01:00
|
|
|
Internal::QmakePriFileEvalResult *fallback,
|
2017-02-15 13:44:13 +01:00
|
|
|
const InstallsList &installList);
|
2017-02-09 11:40:25 +01:00
|
|
|
static void processValues(Internal::QmakePriFileEvalResult &result);
|
2017-02-17 16:04:02 +01:00
|
|
|
void watchFolders(const QSet<Utils::FileName> &folders);
|
2017-02-09 11:40:25 +01:00
|
|
|
|
2019-02-01 16:50:29 +01:00
|
|
|
QString continuationIndent() const;
|
|
|
|
|
|
2017-02-09 15:35:19 +01:00
|
|
|
QmakeProject *m_project = nullptr;
|
2017-02-09 16:45:36 +01:00
|
|
|
QmakeProFile *m_qmakeProFile = nullptr;
|
2017-02-09 17:02:47 +01:00
|
|
|
QmakePriFile *m_parent = nullptr;
|
|
|
|
|
QVector<QmakePriFile *> m_children;
|
2017-02-09 11:40:25 +01:00
|
|
|
|
2017-02-09 15:09:25 +01:00
|
|
|
std::unique_ptr<Core::IDocument> m_priFileDocument;
|
2017-02-09 11:40:25 +01:00
|
|
|
|
|
|
|
|
// Memory is cheap...
|
2017-02-09 16:25:23 +01:00
|
|
|
QMap<ProjectExplorer::FileType, QSet<Utils::FileName>> m_files;
|
2017-02-15 12:24:57 +01:00
|
|
|
QSet<Utils::FileName> m_recursiveEnumerateFiles; // FIXME: Remove this?!
|
2017-02-09 11:40:25 +01:00
|
|
|
QSet<QString> m_watchedFolders;
|
|
|
|
|
bool m_includedInExactParse = true;
|
|
|
|
|
|
2017-02-10 11:16:18 +01:00
|
|
|
friend class QmakeProFile;
|
2017-02-09 11:40:25 +01:00
|
|
|
};
|
|
|
|
|
|
2017-02-15 13:44:13 +01:00
|
|
|
class QMAKEPROJECTMANAGER_EXPORT TargetInformation
|
2017-02-09 11:40:25 +01:00
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
bool valid = false;
|
|
|
|
|
QString target;
|
2017-02-15 12:53:30 +01:00
|
|
|
Utils::FileName destDir;
|
|
|
|
|
Utils::FileName buildDir;
|
2017-02-09 11:40:25 +01:00
|
|
|
QString buildTarget;
|
2017-02-15 13:44:13 +01:00
|
|
|
bool operator==(const TargetInformation &other) const
|
2017-02-09 11:40:25 +01:00
|
|
|
{
|
|
|
|
|
return target == other.target
|
|
|
|
|
&& valid == other.valid
|
|
|
|
|
&& destDir == other.destDir
|
|
|
|
|
&& buildDir == other.buildDir
|
|
|
|
|
&& buildTarget == other.buildTarget;
|
|
|
|
|
}
|
2017-02-15 13:44:13 +01:00
|
|
|
bool operator!=(const TargetInformation &other) const
|
2017-02-09 11:40:25 +01:00
|
|
|
{
|
|
|
|
|
return !(*this == other);
|
|
|
|
|
}
|
|
|
|
|
|
2017-02-15 13:44:13 +01:00
|
|
|
TargetInformation() = default;
|
|
|
|
|
TargetInformation(const TargetInformation &other) = default;
|
2017-02-09 11:40:25 +01:00
|
|
|
};
|
|
|
|
|
|
2017-02-15 13:44:13 +01:00
|
|
|
class QMAKEPROJECTMANAGER_EXPORT InstallsItem {
|
2017-02-09 23:30:14 +01:00
|
|
|
public:
|
2017-02-15 13:44:13 +01:00
|
|
|
InstallsItem() = default;
|
|
|
|
|
InstallsItem(QString p, QVector<ProFileEvaluator::SourceFile> f, bool a)
|
2017-02-09 11:40:25 +01:00
|
|
|
: path(p), files(f), active(a) {}
|
|
|
|
|
QString path;
|
|
|
|
|
QVector<ProFileEvaluator::SourceFile> files;
|
|
|
|
|
bool active = false;
|
|
|
|
|
};
|
|
|
|
|
|
2017-02-15 13:44:13 +01:00
|
|
|
class QMAKEPROJECTMANAGER_EXPORT InstallsList {
|
2017-02-09 23:30:14 +01:00
|
|
|
public:
|
2017-02-09 11:40:25 +01:00
|
|
|
void clear() { targetPath.clear(); items.clear(); }
|
|
|
|
|
QString targetPath;
|
2017-02-15 13:44:13 +01:00
|
|
|
QVector<InstallsItem> items;
|
2017-02-09 11:40:25 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// Implements ProjectNode for qmake .pro files
|
2017-02-09 16:45:36 +01:00
|
|
|
class QMAKEPROJECTMANAGER_EXPORT QmakeProFile : public QmakePriFile
|
2017-02-09 11:40:25 +01:00
|
|
|
{
|
|
|
|
|
public:
|
2017-02-09 16:45:36 +01:00
|
|
|
QmakeProFile(QmakeProject *project, const Utils::FileName &filePath);
|
|
|
|
|
~QmakeProFile() override;
|
2017-02-09 11:40:25 +01:00
|
|
|
|
2017-02-09 16:45:36 +01:00
|
|
|
bool isParent(QmakeProFile *node);
|
2017-02-15 10:24:32 +01:00
|
|
|
QString displayName() const final;
|
2017-02-09 11:40:25 +01:00
|
|
|
|
2017-02-15 12:40:09 +01:00
|
|
|
QList<QmakeProFile *> allProFiles();
|
2017-02-15 12:24:57 +01:00
|
|
|
QmakeProFile *findProFile(const Utils::FileName &fileName);
|
2017-11-02 15:23:37 +01:00
|
|
|
const QmakeProFile *findProFile(const Utils::FileName &fileName) const;
|
2017-02-15 12:40:09 +01:00
|
|
|
|
2017-02-09 11:40:25 +01:00
|
|
|
ProjectType projectType() const;
|
|
|
|
|
|
|
|
|
|
QStringList variableValue(const Variable var) const;
|
|
|
|
|
QString singleVariableValue(const Variable var) const;
|
|
|
|
|
|
2017-02-14 14:54:00 +01:00
|
|
|
bool isSubProjectDeployable(const Utils::FileName &filePath) const {
|
2017-02-09 11:40:25 +01:00
|
|
|
return !m_subProjectsNotToDeploy.contains(filePath);
|
|
|
|
|
}
|
|
|
|
|
|
2017-02-15 12:53:30 +01:00
|
|
|
Utils::FileName sourceDir() const;
|
|
|
|
|
Utils::FileName buildDir(QmakeBuildConfiguration *bc = nullptr) const;
|
2017-02-09 11:40:25 +01:00
|
|
|
|
2017-02-15 12:53:30 +01:00
|
|
|
Utils::FileNameList generatedFiles(const Utils::FileName &buildDirectory,
|
2017-02-10 11:16:18 +01:00
|
|
|
const Utils::FileName &sourceFile,
|
|
|
|
|
const ProjectExplorer::FileType &sourceFileType) const;
|
2017-02-09 11:40:25 +01:00
|
|
|
QList<ProjectExplorer::ExtraCompiler *> extraCompilers() const;
|
|
|
|
|
|
2017-02-15 13:44:13 +01:00
|
|
|
TargetInformation targetInformation() const;
|
|
|
|
|
InstallsList installsList() const;
|
2017-02-09 11:40:25 +01:00
|
|
|
|
|
|
|
|
QByteArray cxxDefines() const;
|
|
|
|
|
|
|
|
|
|
enum AsyncUpdateDelay { ParseNow, ParseLater };
|
2017-02-09 16:45:36 +01:00
|
|
|
using QmakePriFile::scheduleUpdate;
|
2017-02-09 11:40:25 +01:00
|
|
|
void scheduleUpdate(AsyncUpdateDelay delay);
|
|
|
|
|
|
|
|
|
|
bool validParse() const;
|
|
|
|
|
bool parseInProgress() const;
|
|
|
|
|
|
|
|
|
|
void setParseInProgressRecursive(bool b);
|
|
|
|
|
|
|
|
|
|
void asyncUpdate();
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
void setParseInProgress(bool b);
|
|
|
|
|
void setValidParseRecursive(bool b);
|
|
|
|
|
|
|
|
|
|
void applyAsyncEvaluate();
|
|
|
|
|
|
|
|
|
|
void setupReader();
|
|
|
|
|
Internal::QmakeEvalInput evalInput() const;
|
|
|
|
|
|
|
|
|
|
static Internal::QmakeEvalResult *evaluate(const Internal::QmakeEvalInput &input);
|
|
|
|
|
void applyEvaluate(Internal::QmakeEvalResult *parseResult);
|
|
|
|
|
|
|
|
|
|
void asyncEvaluate(QFutureInterface<Internal::QmakeEvalResult *> &fi, Internal::QmakeEvalInput input);
|
|
|
|
|
void cleanupProFileReaders();
|
|
|
|
|
|
2017-02-15 12:53:30 +01:00
|
|
|
void updateGeneratedFiles(const Utils::FileName &buildDir);
|
2017-02-09 11:40:25 +01:00
|
|
|
|
2017-02-15 12:53:30 +01:00
|
|
|
static QString uiDirPath(QtSupport::ProFileReader *reader, const Utils::FileName &buildDir);
|
|
|
|
|
static QString mocDirPath(QtSupport::ProFileReader *reader, const Utils::FileName &buildDir);
|
2017-02-09 11:40:25 +01:00
|
|
|
static QString sysrootify(const QString &path, const QString &sysroot, const QString &baseDir, const QString &outputDir);
|
2017-02-15 12:53:30 +01:00
|
|
|
static QStringList includePaths(QtSupport::ProFileReader *reader, const Utils::FileName &sysroot, const Utils::FileName &buildDir, const QString &projectDir);
|
2017-02-09 11:40:25 +01:00
|
|
|
static QStringList libDirectories(QtSupport::ProFileReader *reader);
|
|
|
|
|
static Utils::FileNameList subDirsPaths(QtSupport::ProFileReader *reader, const QString &projectDir, QStringList *subProjectsNotToDeploy, QStringList *errors);
|
|
|
|
|
|
2017-02-15 13:44:13 +01:00
|
|
|
static TargetInformation targetInformation(QtSupport::ProFileReader *reader, QtSupport::ProFileReader *readerBuildPass, const Utils::FileName &buildDir, const Utils::FileName &projectFilePath);
|
|
|
|
|
static InstallsList installsList(const QtSupport::ProFileReader *reader, const QString &projectFilePath, const QString &projectDir, const QString &buildDir);
|
2017-02-09 11:40:25 +01:00
|
|
|
|
2017-02-10 11:16:18 +01:00
|
|
|
void setupExtraCompiler(const Utils::FileName &buildDir,
|
|
|
|
|
const ProjectExplorer::FileType &fileType,
|
|
|
|
|
ProjectExplorer::ExtraCompilerFactory *factory);
|
|
|
|
|
|
2017-02-09 11:40:25 +01:00
|
|
|
bool m_validParse = false;
|
|
|
|
|
bool m_parseInProgress = false;
|
|
|
|
|
|
2017-02-10 09:56:33 +01:00
|
|
|
QString m_displayName;
|
2017-02-09 11:40:25 +01:00
|
|
|
ProjectType m_projectType = ProjectType::Invalid;
|
2017-02-15 12:24:57 +01:00
|
|
|
|
|
|
|
|
using VariablesHash = QHash<Variable, QStringList>;
|
2017-02-09 11:40:25 +01:00
|
|
|
VariablesHash m_varValues;
|
2017-02-15 12:24:57 +01:00
|
|
|
|
2017-02-09 11:40:25 +01:00
|
|
|
QList<ProjectExplorer::ExtraCompiler *> m_extraCompilers;
|
|
|
|
|
|
2017-02-15 13:44:13 +01:00
|
|
|
TargetInformation m_qmakeTargetInformation;
|
2017-02-14 14:54:00 +01:00
|
|
|
Utils::FileNameList m_subProjectsNotToDeploy;
|
2017-02-15 13:44:13 +01:00
|
|
|
InstallsList m_installsList;
|
2017-02-09 11:40:25 +01:00
|
|
|
|
2018-11-30 10:31:56 +02:00
|
|
|
std::unique_ptr<Utils::FileSystemWatcher> m_wildcardWatcher;
|
|
|
|
|
|
2017-02-09 11:40:25 +01:00
|
|
|
// Async stuff
|
|
|
|
|
QFutureWatcher<Internal::QmakeEvalResult *> m_parseFutureWatcher;
|
|
|
|
|
QtSupport::ProFileReader *m_readerExact = nullptr;
|
|
|
|
|
QtSupport::ProFileReader *m_readerCumulative = nullptr;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
} // namespace QmakeProjectManager
|