1/****************************************************************************
2**
3** Copyright (C) 2016 The Qt Company Ltd.
4** Contact: https://www.qt.io/licensing/
5**
6** This file is part of the qmake application of the Qt Toolkit.
7**
8** $QT_BEGIN_LICENSE:GPL-EXCEPT$
9** Commercial License Usage
10** Licensees holding valid commercial Qt licenses may use this file in
11** accordance with the commercial license agreement provided with the
12** Software or, alternatively, in accordance with the terms contained in
13** a written agreement between you and The Qt Company. For licensing terms
14** and conditions see https://www.qt.io/terms-conditions. For further
15** information use the contact form at https://www.qt.io/contact-us.
16**
17** GNU General Public License Usage
18** Alternatively, this file may be used under the terms of the GNU
19** General Public License version 3 as published by the Free Software
20** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
21** included in the packaging of this file. Please review the following
22** information to ensure the GNU General Public License requirements will
23** be met: https://www.gnu.org/licenses/gpl-3.0.html.
24**
25** $QT_END_LICENSE$
26**
27****************************************************************************/
28
29#ifndef PBUILDER_PBX_H
30#define PBUILDER_PBX_H
31
32#include "unixmake.h"
33
34QT_BEGIN_NAMESPACE
35
36class ProjectBuilderMakefileGenerator : public UnixMakefileGenerator
37{
38 bool writingUnixMakefileGenerator;
39 mutable QString pbx_dir;
40 int pbuilderVersion() const;
41 bool writeSubDirs(QTextStream &);
42 bool writeMakeParts(QTextStream &);
43 bool writeMakefile(QTextStream &) override;
44 bool replaceLibrarySuffix(const QString &lib_file, const ProString &opt, QString &name,
45 QString &library);
46
47 QString pbxbuild();
48 QHash<QString, QString> keys;
49 QString keyFor(const QString &file);
50 QString findProgram(const ProString &prog);
51 QString fixForOutput(const QString &file);
52 ProStringList fixListForOutput(const char *where);
53 ProStringList fixListForOutput(const ProStringList &list);
54 int reftypeForFile(const QString &where);
55 QString projectSuffix() const;
56 enum { SettingsAsList=0x01, SettingsNoQuote=0x02 };
57 inline QString writeSettings(const QString &var, const char *val, int flags=0, int indent_level=0)
58 { return writeSettings(var, ProString(val), flags, indent_level); }
59 inline QString writeSettings(const QString &var, const ProString &val, int flags=0, int indent_level=0)
60 { return writeSettings(var, ProStringList(val), flags, indent_level); }
61 QString writeSettings(const QString &var, const ProStringList &vals, int flags=0, int indent_level=0);
62
63public:
64 bool supportsMetaBuild() override { return false; }
65 bool openOutput(QFile &, const QString &) const override;
66protected:
67 bool doPrecompiledHeaders() const override { return false; }
68 bool doDepends() const override { return writingUnixMakefileGenerator && UnixMakefileGenerator::doDepends(); }
69};
70QT_END_NAMESPACE
71
72#endif // PBUILDER_PBX_H
73