blob: a3072a7d3db82e1d198dcdcb3a641b6743c8a8fa (
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
|
// 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 "ioutputparser.h"
#include <optional>
namespace ProjectExplorer::Internal {
class LdParser : public ProjectExplorer::OutputTaskParser
{
public:
LdParser();
private:
Result handleLine(const QString &line, Utils::OutputFormat type) override;
bool isContinuation(const QString &line) const override;
std::optional<Result> checkMainRegex(const QString &trimmedLine, const QString &originalLine);
std::optional<Result> checkRanlib(const QString &trimmedLine, const QString &originalLine);
Status getStatus(const QString &line);
};
#ifdef WITH_TESTS
QObject *createLdOutputParserTest();
#endif
} // namespace ProjectExplorer::Internal
|