aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/cmake/test_link_qml_module_without_target/Base/Base.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/cmake/test_link_qml_module_without_target/Base/Base.cpp')
-rw-r--r--tests/auto/cmake/test_link_qml_module_without_target/Base/Base.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/auto/cmake/test_link_qml_module_without_target/Base/Base.cpp b/tests/auto/cmake/test_link_qml_module_without_target/Base/Base.cpp
new file mode 100644
index 0000000000..765c14383f
--- /dev/null
+++ b/tests/auto/cmake/test_link_qml_module_without_target/Base/Base.cpp
@@ -0,0 +1,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";
+}