2011-04-27 10:05:43 +00:00
|
|
|
/****************************************************************************
|
|
|
|
**
|
2013-01-02 11:13:29 +00:00
|
|
|
** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
|
2012-09-19 12:28:29 +00:00
|
|
|
** Contact: http://www.qt-project.org/legal
|
2011-04-27 10:05:43 +00:00
|
|
|
**
|
|
|
|
** This file is part of the qmake application of the Qt Toolkit.
|
|
|
|
**
|
|
|
|
** $QT_BEGIN_LICENSE:LGPL$
|
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
|
|
|
|
** 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.
|
|
|
|
**
|
2011-04-27 10:05:43 +00:00
|
|
|
** GNU Lesser General Public License Usage
|
2012-09-19 12:28:29 +00:00
|
|
|
** 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
|
2011-04-27 10:05:43 +00:00
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
**
|
2011-05-24 09:34:08 +00:00
|
|
|
** GNU General Public License Usage
|
2012-09-19 12:28:29 +00:00
|
|
|
** 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.
|
2011-04-27 10:05:43 +00:00
|
|
|
**
|
2012-01-24 06:17:24 +00:00
|
|
|
**
|
2011-04-27 10:05:43 +00:00
|
|
|
** $QT_END_LICENSE$
|
|
|
|
**
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include "property.h"
|
|
|
|
#include "option.h"
|
|
|
|
|
|
|
|
#include <qdir.h>
|
|
|
|
#include <qsettings.h>
|
|
|
|
#include <qstringlist.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
|
|
|
2012-02-29 13:02:48 +00:00
|
|
|
static const struct {
|
|
|
|
const char *name;
|
|
|
|
QLibraryInfo::LibraryLocation loc;
|
2012-02-28 19:57:38 +00:00
|
|
|
bool raw;
|
2012-02-29 13:02:48 +00:00
|
|
|
} propList[] = {
|
2012-02-28 19:57:38 +00:00
|
|
|
{ "QT_SYSROOT", QLibraryInfo::SysrootPath, true },
|
|
|
|
{ "QT_INSTALL_PREFIX", QLibraryInfo::PrefixPath, false },
|
2012-09-24 12:30:45 +00:00
|
|
|
{ "QT_INSTALL_ARCHDATA", QLibraryInfo::ArchDataPath, false },
|
2012-02-28 19:57:38 +00:00
|
|
|
{ "QT_INSTALL_DATA", QLibraryInfo::DataPath, false },
|
|
|
|
{ "QT_INSTALL_DOCS", QLibraryInfo::DocumentationPath, false },
|
|
|
|
{ "QT_INSTALL_HEADERS", QLibraryInfo::HeadersPath, false },
|
|
|
|
{ "QT_INSTALL_LIBS", QLibraryInfo::LibrariesPath, false },
|
2012-10-25 21:32:09 +00:00
|
|
|
{ "QT_INSTALL_LIBEXECS", QLibraryInfo::LibraryExecutablesPath, false },
|
2012-02-28 19:57:38 +00:00
|
|
|
{ "QT_INSTALL_BINS", QLibraryInfo::BinariesPath, false },
|
|
|
|
{ "QT_INSTALL_TESTS", QLibraryInfo::TestsPath, false },
|
|
|
|
{ "QT_INSTALL_PLUGINS", QLibraryInfo::PluginsPath, false },
|
|
|
|
{ "QT_INSTALL_IMPORTS", QLibraryInfo::ImportsPath, false },
|
2012-10-15 20:23:13 +00:00
|
|
|
{ "QT_INSTALL_QML", QLibraryInfo::Qml2ImportsPath, false },
|
2012-02-28 19:57:38 +00:00
|
|
|
{ "QT_INSTALL_TRANSLATIONS", QLibraryInfo::TranslationsPath, false },
|
|
|
|
{ "QT_INSTALL_CONFIGURATION", QLibraryInfo::SettingsPath, false },
|
|
|
|
{ "QT_INSTALL_EXAMPLES", QLibraryInfo::ExamplesPath, false },
|
|
|
|
{ "QT_INSTALL_DEMOS", QLibraryInfo::ExamplesPath, false }, // Just backwards compat
|
|
|
|
{ "QT_HOST_PREFIX", QLibraryInfo::HostPrefixPath, true },
|
|
|
|
{ "QT_HOST_DATA", QLibraryInfo::HostDataPath, true },
|
|
|
|
{ "QT_HOST_BINS", QLibraryInfo::HostBinariesPath, true },
|
2013-05-08 13:30:56 +00:00
|
|
|
{ "QT_HOST_LIBS", QLibraryInfo::HostLibrariesPath, true },
|
2012-10-29 11:43:43 +00:00
|
|
|
{ "QMAKE_SPEC", QLibraryInfo::HostSpecPath, true },
|
|
|
|
{ "QMAKE_XSPEC", QLibraryInfo::TargetSpecPath, true },
|
2012-02-29 13:02:48 +00:00
|
|
|
};
|
|
|
|
|
2011-04-27 10:05:43 +00:00
|
|
|
QMakeProperty::QMakeProperty() : settings(0)
|
|
|
|
{
|
2012-03-09 18:11:27 +00:00
|
|
|
for (int i = 0; i < sizeof(propList)/sizeof(propList[0]); i++) {
|
|
|
|
QString name = QString::fromLatin1(propList[i].name);
|
2012-09-06 10:21:38 +00:00
|
|
|
m_values[ProKey(name + "/get")] = QLibraryInfo::rawLocation(propList[i].loc, QLibraryInfo::EffectivePaths);
|
2012-05-03 13:36:03 +00:00
|
|
|
QString val = QLibraryInfo::rawLocation(propList[i].loc, QLibraryInfo::FinalPaths);
|
2012-03-09 18:11:27 +00:00
|
|
|
if (!propList[i].raw) {
|
2012-09-06 10:21:38 +00:00
|
|
|
m_values[ProKey(name)] = QLibraryInfo::location(propList[i].loc);
|
2012-03-09 18:11:27 +00:00
|
|
|
name += "/raw";
|
|
|
|
}
|
2012-09-06 10:21:38 +00:00
|
|
|
m_values[ProKey(name)] = val;
|
2012-03-09 18:11:27 +00:00
|
|
|
}
|
2012-09-12 17:27:09 +00:00
|
|
|
m_values["QMAKE_VERSION"] = ProString(QMAKE_VERSION_STR);
|
2012-08-21 12:47:08 +00:00
|
|
|
#ifdef QT_VERSION_STR
|
2012-09-06 10:21:38 +00:00
|
|
|
m_values["QT_VERSION"] = ProString(QT_VERSION_STR);
|
2012-08-21 12:47:08 +00:00
|
|
|
#endif
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
QMakeProperty::~QMakeProperty()
|
|
|
|
{
|
|
|
|
delete settings;
|
|
|
|
settings = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void QMakeProperty::initSettings()
|
|
|
|
{
|
|
|
|
if(!settings) {
|
2012-12-02 16:24:19 +00:00
|
|
|
settings = new QSettings(QSettings::UserScope, "QtProject", "QMake");
|
2011-04-27 10:05:43 +00:00
|
|
|
settings->setFallbacksEnabled(false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-09-06 10:21:38 +00:00
|
|
|
ProString
|
|
|
|
QMakeProperty::value(const ProKey &vk)
|
2011-04-27 10:05:43 +00:00
|
|
|
{
|
2012-09-06 10:21:38 +00:00
|
|
|
ProString val = m_values.value(vk);
|
2012-02-29 13:02:48 +00:00
|
|
|
if (!val.isNull())
|
|
|
|
return val;
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
initSettings();
|
2013-01-30 17:43:13 +00:00
|
|
|
return settings->value(vk.toQString()).toString();
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2012-09-06 10:21:38 +00:00
|
|
|
QMakeProperty::hasValue(const ProKey &v)
|
2011-04-27 10:05:43 +00:00
|
|
|
{
|
2012-06-18 11:57:39 +00:00
|
|
|
return !value(v).isNull();
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
QMakeProperty::setValue(QString var, const QString &val)
|
|
|
|
{
|
|
|
|
initSettings();
|
2012-06-18 11:57:39 +00:00
|
|
|
settings->setValue(var, val);
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
QMakeProperty::remove(const QString &var)
|
|
|
|
{
|
|
|
|
initSettings();
|
2012-06-18 11:57:39 +00:00
|
|
|
settings->remove(var);
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
QMakeProperty::exec()
|
|
|
|
{
|
|
|
|
bool ret = true;
|
|
|
|
if(Option::qmake_mode == Option::QMAKE_QUERY_PROPERTY) {
|
|
|
|
if(Option::prop::properties.isEmpty()) {
|
|
|
|
initSettings();
|
2013-01-30 17:43:13 +00:00
|
|
|
foreach (const QString &key, settings->childKeys()) {
|
|
|
|
QString val = settings->value(key).toString();
|
2012-06-18 11:57:39 +00:00
|
|
|
fprintf(stdout, "%s:%s\n", qPrintable(key), qPrintable(val));
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
QStringList specialProps;
|
2012-02-29 13:02:48 +00:00
|
|
|
for (int i = 0; i < sizeof(propList)/sizeof(propList[0]); i++)
|
|
|
|
specialProps.append(QString::fromLatin1(propList[i].name));
|
2011-04-27 10:05:43 +00:00
|
|
|
specialProps.append("QMAKE_VERSION");
|
|
|
|
#ifdef QT_VERSION_STR
|
|
|
|
specialProps.append("QT_VERSION");
|
|
|
|
#endif
|
2012-03-09 18:11:27 +00:00
|
|
|
foreach (QString prop, specialProps) {
|
2012-09-06 10:21:38 +00:00
|
|
|
ProString val = value(ProKey(prop));
|
|
|
|
ProString pval = value(ProKey(prop + "/raw"));
|
|
|
|
ProString gval = value(ProKey(prop + "/get"));
|
2012-03-09 18:11:27 +00:00
|
|
|
fprintf(stdout, "%s:%s\n", prop.toLatin1().constData(), val.toLatin1().constData());
|
|
|
|
if (!pval.isEmpty() && pval != val)
|
|
|
|
fprintf(stdout, "%s/raw:%s\n", prop.toLatin1().constData(), pval.toLatin1().constData());
|
2012-05-03 13:36:03 +00:00
|
|
|
if (!gval.isEmpty() && gval != (pval.isEmpty() ? val : pval))
|
|
|
|
fprintf(stdout, "%s/get:%s\n", prop.toLatin1().constData(), gval.toLatin1().constData());
|
2012-03-09 18:11:27 +00:00
|
|
|
}
|
2011-04-27 10:05:43 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
for(QStringList::ConstIterator it = Option::prop::properties.begin();
|
|
|
|
it != Option::prop::properties.end(); it++) {
|
|
|
|
if(Option::prop::properties.count() > 1)
|
|
|
|
fprintf(stdout, "%s:", (*it).toLatin1().constData());
|
2012-09-06 10:21:38 +00:00
|
|
|
const ProKey pkey(*it);
|
|
|
|
if (!hasValue(pkey)) {
|
2011-04-27 10:05:43 +00:00
|
|
|
ret = false;
|
|
|
|
fprintf(stdout, "**Unknown**\n");
|
|
|
|
} else {
|
2012-09-06 10:21:38 +00:00
|
|
|
fprintf(stdout, "%s\n", value(pkey).toLatin1().constData());
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} else if(Option::qmake_mode == Option::QMAKE_SET_PROPERTY) {
|
|
|
|
for(QStringList::ConstIterator it = Option::prop::properties.begin();
|
|
|
|
it != Option::prop::properties.end(); it++) {
|
|
|
|
QString var = (*it);
|
|
|
|
it++;
|
|
|
|
if(it == Option::prop::properties.end()) {
|
|
|
|
ret = false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if(!var.startsWith("."))
|
|
|
|
setValue(var, (*it));
|
|
|
|
}
|
|
|
|
} else if(Option::qmake_mode == Option::QMAKE_UNSET_PROPERTY) {
|
|
|
|
for(QStringList::ConstIterator it = Option::prop::properties.begin();
|
|
|
|
it != Option::prop::properties.end(); it++) {
|
|
|
|
QString var = (*it);
|
|
|
|
if(!var.startsWith("."))
|
|
|
|
remove(var);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
QT_END_NAMESPACE
|