summaryrefslogtreecommitdiffstats
path: root/tests/auto/tools/qmake/testdata/one_space/main.cpp
blob: 1066d2d927e38a0e077a61d915f9c0a0e473cf96 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only



#include <qguiapplication.h>

int main( int argc, char **argv )
{
    QGuiApplication a( argc, argv );
    return a.exec();
}