aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmlsplitlib/lib.cpp
diff options
context:
space:
mode:
authorFabian Kosmale <fabian.kosmale@qt.io>2021-05-25 16:49:42 +0200
committerFabian Kosmale <fabian.kosmale@qt.io>2021-11-26 15:56:59 +0100
commit96c1337aef41694c1af4863ad6f0d4d1f961363a (patch)
tree740efd456b0daa15445a3eab0f16b06b7fa23a47 /tests/auto/qml/qmlsplitlib/lib.cpp
parenta3deb2ff59e7dce66da09d0287313575b34b291c (diff)
Support QML type registration split: build system + tools integration
This change addresses the following issue: - Module A wants to have an optional QML API without depending on declarative (e.g., because it has a C++ only API usable for Widgets based applications that normally would not link against declarative). - Thus we add a module B with all the QML support (type registration, maybe additional types/functions/image providers). - Currently, this would require to wrap every type from module A into QML_FOREIGN manually, adding large amounts of boilerplate. To solve this, we extend qmltyperegistrar and the CMake API: - qmltyperegistrar gains a new --extract option to generate a file with all QML_FOREIGN declarations. More precisely, it generates a header and source file; the source file includes the header and the moc generated file. - We expose this in cmake via a new qt6_generate_foreign_qml_types function. That function takes two targets, the source library's target and the QML module's target. It then runs qmltyperegistrar on the source library, and adds the generated files to the QML module's target, and adds the proper dependencies between the targets. The remaining step to achieve the goal of split registration is to provide the QML registration macros in a separate header. Task-number: QTBUG-92258 Change-Id: I51c4ef660ca7476b556b1991a6c76bbcad2c69af Reviewed-by: Ulf Hermann <ulf.hermann@qt.io> Reviewed-by: Andrei Golubev <andrei.golubev@qt.io>
Diffstat (limited to 'tests/auto/qml/qmlsplitlib/lib.cpp')
-rw-r--r--tests/auto/qml/qmlsplitlib/lib.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/auto/qml/qmlsplitlib/lib.cpp b/tests/auto/qml/qmlsplitlib/lib.cpp
new file mode 100644
index 0000000000..d228d3f133
--- /dev/null
+++ b/tests/auto/qml/qmlsplitlib/lib.cpp
@@ -0,0 +1,5 @@
+#include "lib.h"
+
+bool SplitLib::transmogrify() { return true; }
+
+#include "moc_lib.cpp"