2022-08-19 15:59:36 +02:00
|
|
|
// Copyright (C) 2022 The Qt Company Ltd.
|
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0
|
2022-03-09 17:29:07 +01:00
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include "mcutarget.h"
|
|
|
|
|
|
|
|
|
|
#include <QRegularExpression>
|
|
|
|
|
|
2022-06-17 17:15:17 +02:00
|
|
|
namespace McuSupport::Internal {
|
2022-03-09 17:29:07 +01:00
|
|
|
|
|
|
|
|
struct McuTargetDescription;
|
|
|
|
|
|
2022-06-17 17:15:17 +02:00
|
|
|
McuTarget::OS deduceOperatingSystem(const McuTargetDescription &);
|
2022-03-03 17:43:41 +01:00
|
|
|
QString removeRtosSuffix(const QString &environmentVariable);
|
2022-03-09 17:29:07 +01:00
|
|
|
|
2022-06-17 17:15:17 +02:00
|
|
|
} // namespace McuSupport::Internal
|