blob: 969844fdd05b0e8dfd7a9d79ab72c52e64050251 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
// Copyright (C) 2016 BogDan Vatra <bog_dan_ro@yahoo.com>
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
#pragma once
#include <projectexplorer/runcontrol.h>
#include <QtTaskTree/QBarrier>
#include <QtTaskTree/QTaskTree>
namespace Android::Internal {
QtTaskTree::Group androidKicker(const QStoredBarrier &barrier,
ProjectExplorer::RunControl *runControl);
QtTaskTree::Group androidRecipe(ProjectExplorer::RunControl *runControl);
void setupAndroidRunWorker();
} // namespace Android::Internal
|