blob: 5dbce8e4b83b83b38ef1adf40b165a22d2b1caf9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/*
SPDX-FileCopyrightText: 2007 Andreas Pakulat <apaku@gmx.de>
SPDX-License-Identifier: MIT
*/
#include "test_emptyentries.h"
#include <QGuiApplication>
int main(int argc, char **argv)
{
QGuiApplication app(argc, argv);
Q_UNUSED(app);
QMakeBuilderSettings::instance(QStringLiteral("abc"));
auto *t = QMakeBuilderSettings::self();
delete t;
return 0;
}
|