From 38be0d13830efd2d98281c645c3a60afe05ffece Mon Sep 17 00:00:00 2001 From: Qt by Nokia Date: Wed, 27 Apr 2011 12:05:43 +0200 Subject: Initial import from the monolithic Qt. This is the beginning of revision history for this module. If you want to look at revision history older than this, please refer to the Qt Git wiki for how to use Git history grafting. At the time of writing, this wiki is located here: http://qt.gitorious.org/qt/pages/GitIntroductionWithQt If you have already performed the grafting and you don't see any history beyond this commit, try running "git log" with the "--follow" argument. Branched from the monolithic repo, Qt master branch, at commit 896db169ea224deb96c59ce8af800d019de63f12 --- tools/configure/configureapp.h | 187 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 187 insertions(+) create mode 100644 tools/configure/configureapp.h (limited to 'tools/configure/configureapp.h') diff --git a/tools/configure/configureapp.h b/tools/configure/configureapp.h new file mode 100644 index 0000000000..fa14f98b14 --- /dev/null +++ b/tools/configure/configureapp.h @@ -0,0 +1,187 @@ +/**************************************************************************** +** +** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). +** All rights reserved. +** Contact: Nokia Corporation (qt-info@nokia.com) +** +** This file is part of the tools applications of the Qt Toolkit. +** +** $QT_BEGIN_LICENSE:LGPL$ +** No Commercial Usage +** This file contains pre-release code and may not be distributed. +** You may use this file in accordance with the terms and conditions +** contained in the Technology Preview License Agreement accompanying +** this package. +** +** 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, Nokia gives you certain additional +** rights. These rights are described in the Nokia Qt LGPL Exception +** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. +** +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +#include +#include +#include +#include +#include +#include + +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(); +private: + // Our variable dictionaries + QMap 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 makeList[3]; + QStringList qmakeIncludes; + QStringList qmakeLibs; + QString opensslLibs; + QString psqlLibs; + QString sybase; + QString sybaseLibs; + + QMap 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 + + 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 -- cgit v1.2.3