aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/cmake/test_link_qml_module_without_target/Base/Base.cpp
blob: 765c14383f378546dea12a5b1ddcb232fbe5bbcf (plain)
1
2
3
4
5
6
7
8
9
10
// Copyright (C) 2023 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only

#include "Base.h"
#include <QDebug>

Base::Base(QObject *parent) : QObject(parent)
{
    qDebug() << Q_FUNC_INFO << "Base library loaded";
}