blob: 4eac0e6e47da06b602400b8f5baff72724552bbf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// Copyright (C) 2019 Luxoft Sweden AB
// Copyright (C) 2018 Pelagicore AG
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
#pragma once
#include <projectexplorer/devicesupport/idevice.h>
#include <projectexplorer/project.h>
namespace AppManager::Internal {
Utils::FilePath getToolFilePath(const QString &toolname, const ProjectExplorer::Kit *kit,
const ProjectExplorer::IDevice::ConstPtr &device);
} // AppManager::Internal
|