2022-05-10 10:06:48 +00:00
|
|
|
// Copyright (C) 2021 The Qt Company Ltd.
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
2021-01-28 15:06:26 +00:00
|
|
|
|
|
|
|
#ifndef QMAKELIBRARYINFO_H
|
|
|
|
#define QMAKELIBRARYINFO_H
|
|
|
|
|
|
|
|
#include <qlibraryinfo.h>
|
|
|
|
#include <qstring.h>
|
|
|
|
#include <qstringlist.h>
|
|
|
|
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
|
|
|
|
|
|
class QSettings;
|
|
|
|
|
|
|
|
struct QMakeLibraryInfo
|
|
|
|
{
|
|
|
|
static QString path(int loc);
|
|
|
|
|
|
|
|
/* This enum has to start after the last value in QLibraryInfo::LibraryPath(NOT SettingsPath!).
|
|
|
|
* See qconfig.cpp.in and QLibraryInfo for details.
|
2021-03-05 20:57:51 +00:00
|
|
|
* When adding enum values between FirstHostPath and LastHostPath, make sure to adjust
|
|
|
|
* the hostToTargetPathEnum(int) function.
|
2021-01-28 15:06:26 +00:00
|
|
|
*/
|
|
|
|
enum LibraryPathQMakeExtras {
|
2021-03-05 15:33:24 +00:00
|
|
|
HostBinariesPath = QLibraryInfo::TestsPath + 1,
|
|
|
|
FirstHostPath = HostBinariesPath,
|
2021-01-28 15:06:26 +00:00
|
|
|
HostLibraryExecutablesPath,
|
|
|
|
HostLibrariesPath,
|
|
|
|
HostDataPath,
|
2021-03-05 17:12:31 +00:00
|
|
|
HostPrefixPath,
|
|
|
|
LastHostPath = HostPrefixPath,
|
2021-01-28 15:06:26 +00:00
|
|
|
TargetSpecPath,
|
|
|
|
HostSpecPath,
|
2021-03-05 15:33:24 +00:00
|
|
|
SysrootPath,
|
2021-03-05 17:12:31 +00:00
|
|
|
SysrootifyPrefixPath
|
2021-01-28 15:06:26 +00:00
|
|
|
};
|
|
|
|
enum PathGroup { FinalPaths, EffectivePaths, EffectiveSourcePaths, DevicePaths };
|
|
|
|
static QString rawLocation(int loc, PathGroup group);
|
|
|
|
static void reload();
|
|
|
|
static bool haveGroup(PathGroup group);
|
|
|
|
static void sysrootify(QString &path);
|
|
|
|
};
|
|
|
|
|
|
|
|
QT_END_NAMESPACE
|
|
|
|
|
|
|
|
#endif // QMAKELIBRARYINFO_H
|