blob: b1eef617130565a897ebb612e7f19e268ef75f46 (
plain)
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
|
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
#pragma once
#include <utils/filepath.h>
#include <QString>
#include <QStringList>
namespace Ios {
class XcodePlatform
{
public:
class SDK
{
public:
QString directoryName;
Utils::FilePath path;
QStringList architectures;
};
class ToolchainTarget
{
public:
QString name;
QString architecture;
QStringList backendFlags;
bool operator==(const ToolchainTarget &other) const;
};
Utils::FilePath developerPath;
Utils::FilePath cxxCompilerPath;
Utils::FilePath cCompilerPath;
std::vector<ToolchainTarget> targets;
std::vector<SDK> sdks;
// ignores anything besides name
bool operator==(const XcodePlatform &other) const;
};
size_t qHash(const XcodePlatform &platform);
size_t qHash(const XcodePlatform::ToolchainTarget &target);
class XcodeProbe
{
public:
static Utils::FilePath sdkPath(const QString &devPath, const QString &platformName);
static QMap<QString, XcodePlatform> detectPlatforms(const QString &devPath = QString());
private:
void addDeveloperPath(const QString &path);
void detectDeveloperPaths();
void setupDefaultToolchains(const QString &devPath);
void detectFirst();
QMap<QString, XcodePlatform> detectedPlatforms();
private:
QMap<QString, XcodePlatform> m_platforms;
QStringList m_developerPaths;
};
} // namespace Ios
|