summaryrefslogtreecommitdiffstats
path: root/tests/auto/cmake/test_moc_macro_target/main_wrap_test.cpp
blob: 2f403d95c69e04351c8cd834927832c79a40631e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright (C) 2013 Klarälvdalens Datakonsult AB, a KDAB Group company, info@kdab.com, author Stephen Kelly <stephen.kelly@kdab.com>
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

#include <QObject>

#include "mywrapobject.h"

int main(int argc, char **argv)
{
  MyWrapObject mwo;
  mwo.objectName();
  return 0;
}