Warning: That file was not part of the compilation database. It may have many parsing errors.

1/****************************************************************************
2**
3** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies).
4** Contact: http://www.qt-project.org/legal
5**
6** This file is part of the tools applications of the Qt Toolkit.
7**
8** $QT_BEGIN_LICENSE:LGPL$
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 Digia. For licensing terms and
14** conditions see http://qt.digia.com/licensing. For further information
15** use the contact form at http://qt.digia.com/contact-us.
16**
17** GNU Lesser General Public License Usage
18** Alternatively, this file may be used under the terms of the GNU Lesser
19** General Public License version 2.1 as published by the Free Software
20** Foundation and appearing in the file LICENSE.LGPL included in the
21** packaging of this file. Please review the following information to
22** ensure the GNU Lesser General Public License version 2.1 requirements
23** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
24**
25** In addition, as a special exception, Digia gives you certain additional
26** rights. These rights are described in the Digia Qt LGPL Exception
27** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
28**
29** GNU General Public License Usage
30** Alternatively, this file may be used under the terms of the GNU
31** General Public License version 3.0 as published by the Free Software
32** Foundation and appearing in the file LICENSE.GPL included in the
33** packaging of this file. Please review the following information to
34** ensure the GNU General Public License version 3.0 requirements will be
35** met: http://www.gnu.org/copyleft/gpl.html.
36**
37**
38** $QT_END_LICENSE$
39**
40****************************************************************************/
41
42#include <qmap.h>
43#include <qstring.h>
44#include <qstringlist.h>
45#include <qlist.h>
46#include <qtextstream.h>
47#include <qdir.h>
48
49QT_BEGIN_NAMESPACE
50
51class MakeItem;
52
53class Configure
54{
55public:
56 Configure( int& argc, char** argv );
57 ~Configure();
58
59 void parseCmdLine();
60#if !defined(EVAL)
61 void validateArgs();
62#endif
63 bool displayHelp();
64
65 QString defaultTo(const QString &option);
66 bool checkAvailability(const QString &part);
67 void autoDetection();
68 bool verifyConfiguration();
69
70 void generateOutputVars();
71#if !defined(EVAL)
72 void generateHeaders();
73 void generateBuildKey();
74 void generateCachefile();
75 void displayConfig();
76 void buildQmake();
77 void buildHostTools();
78#endif
79 void generateMakefiles();
80 void appendMakeItem(int inList, const QString &item);
81#if !defined(EVAL)
82 void generateConfigfiles();
83#endif
84 void showSummary();
85 void findProjects( const QString& dirName );
86 QString firstLicensePath();
87
88#if !defined(EVAL)
89 bool showLicense(QString licenseFile);
90 void readLicense();
91#endif
92
93 QString addDefine(QString def);
94
95 enum ProjectType {
96 App,
97 Lib,
98 Subdirs
99 };
100
101 ProjectType projectType( const QString& proFileName );
102 bool isDone();
103 bool isOk();
104
105 int platform() const;
106 QString platformName() const;
107 QString qpaPlatformName() const;
108
109private:
110 // Our variable dictionaries
111 QMap<QString,QString> dictionary;
112 QStringList licensedModules;
113 QStringList allSqlDrivers;
114 QStringList allConfigs;
115 QStringList disabledModules;
116 QStringList enabledModules;
117 QStringList modules;
118 QStringList disabledBuildParts;
119// QStringList sqlDrivers;
120 QStringList configCmdLine;
121 QStringList qmakeConfig;
122 QStringList qtConfig;
123
124 QStringList qmakeSql;
125 QStringList qmakeSqlPlugins;
126
127 QStringList qmakeStyles;
128 QStringList qmakeStylePlugins;
129
130 QStringList qmakeVars;
131 QStringList qmakeDefines;
132 // makeList[0] for qt and qtmain
133 // makeList[1] for subdirs and libs
134 // makeList[2] for the rest
135 QList<MakeItem*> makeList[3];
136 QStringList qmakeIncludes;
137 QStringList qmakeLibs;
138 QString opensslLibs;
139 QString opensslLibsDebug;
140 QString opensslLibsRelease;
141 QString psqlLibs;
142 QString sybase;
143 QString sybaseLibs;
144
145 QMap<QString,QString> licenseInfo;
146 QString outputLine;
147
148 QTextStream outStream;
149 QString sourcePath, buildPath;
150 QDir sourceDir, buildDir;
151
152 // Variables for usage output
153 int optionIndent;
154 int descIndent;
155 int outputWidth;
156
157 bool useUnixSeparators;
158 QString fixSeparators(const QString &somePath, bool escape = false);
159 QString escapeSeparators(const QString &somePath);
160 bool filesDiffer(const QString &file1, const QString &file2);
161
162 bool findFile(const QString &fileName);
163 static QString findFileInPaths(const QString &fileName, const QString &paths);
164#if !defined(EVAL)
165 void reloadCmdLine();
166 void saveCmdLine();
167#endif
168
169 bool compilerSupportsFlag(const QStringList &compilerAndArgs);
170
171 void desc(const char *description, int startingAt = 0, int wrapIndent = 0);
172 void desc(const char *option, const char *description, bool skipIndent = false, char fillChar = '.');
173 void desc(const char *mark_option, const char *mark, const char *option, const char *description, char fillChar = '.');
174 void applySpecSpecifics();
175 static QString locateFile(const QString &fileName);
176 static QString locateFileInPaths(const QString &fileName, const QStringList &paths);
177};
178
179class MakeItem
180{
181public:
182 MakeItem( const QString &d, const QString &p, const QString &t, Configure::ProjectType qt )
183 : directory( d ),
184 proFile( p ),
185 target( t ),
186 qmakeTemplate( qt )
187 { }
188
189 QString directory;
190 QString proFile;
191 QString target;
192 Configure::ProjectType qmakeTemplate;
193};
194
195
196QT_END_NAMESPACE
197

Warning: That file was not part of the compilation database. It may have many parsing errors.