aboutsummaryrefslogtreecommitdiffstats
path: root/sources/shiboken6/tests/test_generator/main.cpp
blob: ba4440b2f11e91539c665b06f70f31f17ef4ff8e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

#include <QtCore>

int main(int argc, char *argv[])
{
    QStringList args;
    args.append("--generator-set=dummy");
    for (int i = 1; i < argc; i++)
        args.append(argv[i]);
    return QProcess::execute("generatorrunner", args);
}