2011-04-27 10:05:43 +00:00
|
|
|
/****************************************************************************
|
|
|
|
**
|
2016-01-15 12:36:27 +00:00
|
|
|
** Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
** Contact: https://www.qt.io/licensing/
|
2011-04-27 10:05:43 +00:00
|
|
|
**
|
|
|
|
** This file is part of the qmake application of the Qt Toolkit.
|
|
|
|
**
|
2016-01-15 12:36:27 +00:00
|
|
|
** $QT_BEGIN_LICENSE:GPL-EXCEPT$
|
2012-09-19 12:28:29 +00:00
|
|
|
** 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
|
2015-01-28 08:44:43 +00:00
|
|
|
** a written agreement between you and The Qt Company. For licensing terms
|
2016-01-15 12:36:27 +00:00
|
|
|
** and conditions see https://www.qt.io/terms-conditions. For further
|
|
|
|
** information use the contact form at https://www.qt.io/contact-us.
|
2012-09-19 12:28:29 +00:00
|
|
|
**
|
2016-01-15 12:36:27 +00:00
|
|
|
** 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.
|
2011-04-27 10:05:43 +00:00
|
|
|
**
|
|
|
|
** $QT_END_LICENSE$
|
|
|
|
**
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifndef MSVC_VCPROJ_H
|
|
|
|
#define MSVC_VCPROJ_H
|
|
|
|
|
|
|
|
#include "winmakefile.h"
|
|
|
|
#include "msvc_objectmodel.h"
|
|
|
|
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
|
|
|
|
|
|
enum Target {
|
|
|
|
Application,
|
|
|
|
SharedLib,
|
|
|
|
StaticLib
|
|
|
|
};
|
|
|
|
|
2012-01-06 12:18:35 +00:00
|
|
|
class QUuid;
|
2012-04-25 14:55:28 +00:00
|
|
|
struct VcsolutionDepend;
|
2011-04-27 10:05:43 +00:00
|
|
|
class VcprojGenerator : public Win32MakefileGenerator
|
|
|
|
{
|
2011-05-05 08:51:27 +00:00
|
|
|
bool is64Bit;
|
2011-04-27 10:05:43 +00:00
|
|
|
bool writeVcprojParts(QTextStream &);
|
|
|
|
|
2018-08-02 21:34:53 +00:00
|
|
|
bool writeMakefile(QTextStream &) override;
|
|
|
|
bool writeProjectMakefile() override;
|
2011-04-27 10:05:43 +00:00
|
|
|
|
2018-08-02 21:34:53 +00:00
|
|
|
void init() override;
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
public:
|
|
|
|
VcprojGenerator();
|
|
|
|
~VcprojGenerator();
|
|
|
|
|
|
|
|
QString defaultMakefile() const;
|
2018-11-22 08:26:09 +00:00
|
|
|
QString precompH, precompHFilename, precompSource,
|
2011-04-27 10:05:43 +00:00
|
|
|
precompObj, precompPch;
|
2018-11-22 08:26:09 +00:00
|
|
|
bool autogenPrecompSource;
|
2011-04-27 10:05:43 +00:00
|
|
|
static bool hasBuiltinCompiler(const QString &file);
|
|
|
|
|
2012-01-09 18:25:44 +00:00
|
|
|
QHash<QString, QStringList> extraCompilerSources;
|
2016-11-28 16:46:22 +00:00
|
|
|
QHash<QString, QString> extraCompilerOutputs;
|
2016-11-28 17:16:35 +00:00
|
|
|
const QString customBuildToolFilterFileSuffix;
|
2011-04-27 10:05:43 +00:00
|
|
|
bool usePCH;
|
2018-11-22 08:35:38 +00:00
|
|
|
bool pchIsCFile = false;
|
2011-04-27 10:05:43 +00:00
|
|
|
VCProjectWriter *projectWriter;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
virtual VCProjectWriter *createProjectWriter();
|
2018-08-02 21:34:53 +00:00
|
|
|
bool doDepends() const override { return false; } // Never necessary
|
2015-04-21 13:24:24 +00:00
|
|
|
using Win32MakefileGenerator::replaceExtraCompilerVariables;
|
2018-08-02 21:34:53 +00:00
|
|
|
QString replaceExtraCompilerVariables(const QString &, const QStringList &, const QStringList &, ReplaceFor) override;
|
2019-05-31 08:22:44 +00:00
|
|
|
QString extraCompilerName(const ProString &extraCompiler, const QStringList &inputs,
|
|
|
|
const QStringList &outputs);
|
2018-08-02 21:34:53 +00:00
|
|
|
bool supportsMetaBuild() override { return true; }
|
|
|
|
bool supportsMergedBuilds() override { return true; }
|
|
|
|
bool mergeBuildProject(MakefileGenerator *other) override;
|
2011-04-27 10:05:43 +00:00
|
|
|
|
2018-08-02 21:34:53 +00:00
|
|
|
bool openOutput(QFile &file, const QString &build) const override;
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
virtual void initProject();
|
|
|
|
void initConfiguration();
|
|
|
|
void initCompilerTool();
|
|
|
|
void initLinkerTool();
|
|
|
|
void initLibrarianTool();
|
2013-06-18 06:58:31 +00:00
|
|
|
void initManifestTool();
|
2011-04-27 10:05:43 +00:00
|
|
|
void initResourceTool();
|
|
|
|
void initIDLTool();
|
|
|
|
void initCustomBuildTool();
|
|
|
|
void initPreBuildEventTools();
|
|
|
|
void initPostBuildEventTools();
|
|
|
|
void initDeploymentTool();
|
2014-02-11 11:49:18 +00:00
|
|
|
void initWinDeployQtTool();
|
2011-04-27 10:05:43 +00:00
|
|
|
void initPreLinkEventTools();
|
|
|
|
void initRootFiles();
|
|
|
|
void initSourceFiles();
|
|
|
|
void initHeaderFiles();
|
|
|
|
void initGeneratedFiles();
|
|
|
|
void initTranslationFiles();
|
|
|
|
void initFormFiles();
|
|
|
|
void initResourceFiles();
|
2013-02-11 23:25:23 +00:00
|
|
|
void initDeploymentFiles();
|
2015-03-20 09:58:02 +00:00
|
|
|
void initDistributionFiles();
|
2011-04-27 10:05:43 +00:00
|
|
|
void initLexYaccFiles();
|
|
|
|
void initExtraCompilerOutputs();
|
|
|
|
|
|
|
|
void writeSubDirs(QTextStream &t); // Called from VCXProj backend
|
|
|
|
QUuid getProjectUUID(const QString &filename=QString()); // Called from VCXProj backend
|
|
|
|
|
|
|
|
Target projectTarget;
|
|
|
|
|
|
|
|
// Used for single project
|
|
|
|
VCProjectSingleConfig vcProject;
|
|
|
|
|
|
|
|
// Holds all configurations for glue (merged) project
|
|
|
|
QList<VcprojGenerator*> mergedProjects;
|
|
|
|
|
|
|
|
private:
|
2012-04-25 14:55:28 +00:00
|
|
|
ProStringList collectDependencies(QMakeProject *proj, QHash<QString, QString> &projLookup,
|
|
|
|
QHash<QString, QString> &projGuids,
|
|
|
|
QHash<VcsolutionDepend *, QStringList> &extraSubdirs,
|
|
|
|
QHash<QString, VcsolutionDepend*> &solution_depends,
|
|
|
|
QList<VcsolutionDepend*> &solution_cleanup,
|
|
|
|
QTextStream &t,
|
|
|
|
QHash<QString, ProStringList> &subdirProjectLookup,
|
|
|
|
const ProStringList &allDependencies = ProStringList());
|
2011-04-27 10:05:43 +00:00
|
|
|
QUuid increaseUUID(const QUuid &id);
|
2014-04-02 15:16:33 +00:00
|
|
|
QString retrievePlatformToolSet() const;
|
2014-10-21 11:47:16 +00:00
|
|
|
bool isStandardSuffix(const QString &suffix) const;
|
2015-04-21 13:43:29 +00:00
|
|
|
ProString firstInputFileName(const ProString &extraCompilerName) const;
|
|
|
|
QString firstExpandedOutputFileName(const ProString &extraCompilerName);
|
2016-12-19 17:56:43 +00:00
|
|
|
void createCustomBuildToolFakeFile(const QString &cbtFilePath, const QString &realOutFilePath);
|
2019-02-25 13:58:28 +00:00
|
|
|
bool otherFiltersContain(const QString &fileName) const;
|
2011-04-27 10:05:43 +00:00
|
|
|
friend class VCFilter;
|
|
|
|
};
|
|
|
|
|
|
|
|
inline QString VcprojGenerator::defaultMakefile() const
|
|
|
|
{
|
|
|
|
return project->first("TARGET") + project->first("VCPROJ_EXTENSION");
|
|
|
|
}
|
|
|
|
|
|
|
|
QT_END_NAMESPACE
|
|
|
|
|
|
|
|
#endif // MSVC_VCPROJ_H
|