Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
Loading...
Searching...
No Matches
runqttool.h
Go to the documentation of this file.
1// Copyright (C) 2018 The Qt Company Ltd.
2// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
3
4#ifndef RUNQTTOOL_H
5#define RUNQTTOOL_H
6
7#include <QtCore/qlibraryinfo.h>
8#include <QtCore/qstring.h>
9#include <QtCore/qstringlist.h>
10#include <QtCore/qtemporaryfile.h>
11
12#include <memory>
13
14void runQtTool(const QString &toolName, const QStringList &arguments,
15 QLibraryInfo::LibraryPath location = QLibraryInfo::BinariesPath);
16void runInternalQtTool(const QString &toolName, const QStringList &arguments);
18
19#endif // RUNQTTOOL_H
int main(int argc, char *argv[])
[2]
Definition buffer.cpp:77
static void printUsage()
Definition main.cpp:60
static void printOut(const QString &out)
Definition main.cpp:18
static void printErr(const QString &out)
Definition main.cpp:23
void runInternalQtTool(const QString &toolName, const QStringList &arguments)
Definition runqttool.cpp:92
std::unique_ptr< QTemporaryFile > createProjectDescription(QStringList args)
Definition runqttool.cpp:99
void runQtTool(const QString &toolName, const QStringList &arguments, QLibraryInfo::LibraryPath location=QLibraryInfo::BinariesPath)
Definition runqttool.cpp:79