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