summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Olbrich <m.olbrich@pengutronix.de>2016-06-13 18:31:55 +0200
committerMichael Olbrich <m.olbrich@pengutronix.de>2016-06-14 08:52:44 +0200
commitb72f10434d76e09804b823773b45f6d01f433231 (patch)
tree56771bf33f3e4a799126e5af7b6bd34d6f9a45ba
parent2acd927409793b3c92240cde425b99d6951c1b94 (diff)
downloadptxdist-b72f10434d76e09804b823773b45f6d01f433231.tar.gz
ptxdist-b72f10434d76e09804b823773b45f6d01f433231.tar.xz
qt5: version bump 5.6.0 -> 5.6.1
Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
-rw-r--r--patches/qt-everywhere-opensource-src-5.6.0/0001-Disable-c-standard-compiler-flags-for-the-host-build.patch39
-rw-r--r--patches/qt-everywhere-opensource-src-5.6.0/0002-Search-for-libsystemd-first-fall-back-to-libsystemd-.patch52
-rw-r--r--patches/qt-everywhere-opensource-src-5.6.0/0102-qtbase-examples-fix-building-without-session-managem.patch53
-rw-r--r--patches/qt-everywhere-opensource-src-5.6.1/0100-eglfs-plugin-needs-egl-for-correct-cflags.patch (renamed from patches/qt-everywhere-opensource-src-5.6.0/0100-eglfs-plugin-needs-egl-for-correct-cflags.patch)4
-rw-r--r--patches/qt-everywhere-opensource-src-5.6.1/0101-qtwebengine-make-sure-sysroot-is-always-set-on-ARM.patch (renamed from patches/qt-everywhere-opensource-src-5.6.0/0101-qtwebengine-make-sure-sysroot-is-always-set-on-ARM.patch)2
-rw-r--r--patches/qt-everywhere-opensource-src-5.6.1/0102-qt3d-link-with-latomic-if-necessary.patch (renamed from patches/qt-everywhere-opensource-src-5.6.0/0103-qt3d-link-with-latomic-if-necessary.patch)0
-rw-r--r--patches/qt-everywhere-opensource-src-5.6.1/0200-ptxdist-qtwebengine-allow-building-with-ptxdsit.patch (renamed from patches/qt-everywhere-opensource-src-5.6.0/0200-ptxdist-qtwebengine-allow-building-with-ptxdsit.patch)0
-rw-r--r--patches/qt-everywhere-opensource-src-5.6.1/0201-HACK-put-wayland-scanner-outout-in-srcdir.patch (renamed from patches/qt-everywhere-opensource-src-5.6.0/0201-HACK-put-wayland-scanner-outout-in-srcdir.patch)0
-rw-r--r--patches/qt-everywhere-opensource-src-5.6.1/0202-qtwebengine-define-TRUE-in-case-of-USE_SYSTEM_LIBJPE.patch (renamed from patches/qt-everywhere-opensource-src-5.6.0/0202-qtwebengine-define-TRUE-in-case-of-USE_SYSTEM_LIBJPE.patch)0
-rw-r--r--patches/qt-everywhere-opensource-src-5.6.1/series (renamed from patches/qt-everywhere-opensource-src-5.6.0/series)7
-rw-r--r--rules/qt5.make4
-rw-r--r--rules/qt5examples.in761
-rw-r--r--rules/qt5examples.make654
13 files changed, 1291 insertions, 285 deletions
diff --git a/patches/qt-everywhere-opensource-src-5.6.0/0001-Disable-c-standard-compiler-flags-for-the-host-build.patch b/patches/qt-everywhere-opensource-src-5.6.0/0001-Disable-c-standard-compiler-flags-for-the-host-build.patch
deleted file mode 100644
index 4b7b0c757..000000000
--- a/patches/qt-everywhere-opensource-src-5.6.0/0001-Disable-c-standard-compiler-flags-for-the-host-build.patch
+++ /dev/null
@@ -1,39 +0,0 @@
-From: Peter Seiderer <ps.report@gmx.net>
-Date: Thu, 3 Mar 2016 15:17:31 +0100
-Subject: [PATCH] Disable c++ standard compiler flags for the host build
-MIME-Version: 1.0
-Content-Type: text/plain; charset=UTF-8
-Content-Transfer-Encoding: 8bit
-
-There is no test for c++ standard support for the host build
-(only for the target compiler/build) which leads to trouble
-in some cross compiling environments (old host compiler, new
-cross compiler):
-
- g++: error: unrecognized command line option ā€˜-std=c++1zā€™
-
-So disable c++ standard compiler flags unconditionally for host builds.
-
-Task-number: QTBUG-51644
-Change-Id: Ifb3042e125fe199a7e081740d1171d26ccacf0c5
-Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@theqtcompany.com>
----
- qtbase/mkspecs/features/default_post.prf | 5 ++++-
- 1 file changed, 4 insertions(+), 1 deletion(-)
-
-diff --git a/qtbase/mkspecs/features/default_post.prf b/qtbase/mkspecs/features/default_post.prf
-index cd8d8859aa91..561c8f4858cc 100644
---- a/qtbase/mkspecs/features/default_post.prf
-+++ b/qtbase/mkspecs/features/default_post.prf
-@@ -95,7 +95,10 @@ breakpad {
- !isEmpty(QMAKE_STRIP):QMAKE_POST_LINK = $$QMAKE_POST_LINK$$escape_expand(\\n\\t)$$quote($$QMAKE_STRIP $$DEBUGFILENAME)
- }
-
--c++11|c++14|c++1z {
-+# Disable special compiler flags for host builds (needs to be changed for 5.7
-+# to fall back to c++11 because since 5.7 c++11 is required everywhere,
-+# including host builds).
-+if(!host_build|!cross_compile):if(c++11|c++14|c++1z) {
- c++1z: cxxstd = CXX1Z
- else: c++14: cxxstd = CXX14
- else: cxxstd = CXX11
diff --git a/patches/qt-everywhere-opensource-src-5.6.0/0002-Search-for-libsystemd-first-fall-back-to-libsystemd-.patch b/patches/qt-everywhere-opensource-src-5.6.0/0002-Search-for-libsystemd-first-fall-back-to-libsystemd-.patch
deleted file mode 100644
index 14ef205ff..000000000
--- a/patches/qt-everywhere-opensource-src-5.6.0/0002-Search-for-libsystemd-first-fall-back-to-libsystemd-.patch
+++ /dev/null
@@ -1,52 +0,0 @@
-From: Heiko Becker <heirecka@exherbo.org>
-Date: Fri, 12 Feb 2016 12:37:15 +0100
-Subject: [PATCH] Search for libsystemd first, fall back to libsystemd-journal
-
-systemd >= 209 merged the individual libraries libsystemd-journal,
-libsystemd-login, libsystemd-id128 and libsystemd-daemon into
-a single library, libsystemd. To ease the transition one could pass
-an option to its build to generate stub libraries and matching
-pkg-config files. With systemd >= 229 this option has now been
-removed, causing the build to fail when the journald option is
-enabled.
-
-Change-Id: I26670f207f1a9e79c16be5ce8c8a49353143c5ba
-Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@theqtcompany.com>
-Reviewed-by: Robin Burchell <robin.burchell@viroteck.net>
----
- qtbase/config.tests/unix/journald/journald.pro | 6 +++++-
- qtbase/src/corelib/global/global.pri | 5 ++++-
- 2 files changed, 9 insertions(+), 2 deletions(-)
-
-diff --git a/qtbase/config.tests/unix/journald/journald.pro b/qtbase/config.tests/unix/journald/journald.pro
-index 2bb50ceb71c5..ea765642e6ea 100644
---- a/qtbase/config.tests/unix/journald/journald.pro
-+++ b/qtbase/config.tests/unix/journald/journald.pro
-@@ -1,6 +1,10 @@
- SOURCES = journald.c
-
- CONFIG += link_pkgconfig
--PKGCONFIG_PRIVATE += libsystemd-journal
-+
-+packagesExist(libsystemd): \
-+ PKGCONFIG_PRIVATE += libsystemd
-+else: \
-+ PKGCONFIG_PRIVATE += libsystemd-journal
-
- CONFIG -= qt
-diff --git a/qtbase/src/corelib/global/global.pri b/qtbase/src/corelib/global/global.pri
-index aa4945f90e3a..dd846955f61e 100644
---- a/qtbase/src/corelib/global/global.pri
-+++ b/qtbase/src/corelib/global/global.pri
-@@ -53,7 +53,10 @@ slog2 {
-
- journald {
- CONFIG += link_pkgconfig
-- PKGCONFIG_PRIVATE += libsystemd-journal
-+ packagesExist(libsystemd): \
-+ PKGCONFIG_PRIVATE += libsystemd
-+ else: \
-+ PKGCONFIG_PRIVATE += libsystemd-journal
- DEFINES += QT_USE_JOURNALD
- }
-
diff --git a/patches/qt-everywhere-opensource-src-5.6.0/0102-qtbase-examples-fix-building-without-session-managem.patch b/patches/qt-everywhere-opensource-src-5.6.0/0102-qtbase-examples-fix-building-without-session-managem.patch
deleted file mode 100644
index c9fa5065b..000000000
--- a/patches/qt-everywhere-opensource-src-5.6.0/0102-qtbase-examples-fix-building-without-session-managem.patch
+++ /dev/null
@@ -1,53 +0,0 @@
-From: Michael Olbrich <m.olbrich@pengutronix.de>
-Date: Mon, 29 Feb 2016 16:21:24 +0100
-Subject: [PATCH] qtbase: examples: fix building without session management
-
-Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
----
- qtbase/examples/widgets/mainwindows/application/mainwindow.cpp | 4 ++++
- qtbase/examples/widgets/mainwindows/application/mainwindow.h | 2 ++
- 2 files changed, 6 insertions(+)
-
-diff --git a/qtbase/examples/widgets/mainwindows/application/mainwindow.cpp b/qtbase/examples/widgets/mainwindows/application/mainwindow.cpp
-index 861b908189d8..9b8ae818282a 100644
---- a/qtbase/examples/widgets/mainwindows/application/mainwindow.cpp
-+++ b/qtbase/examples/widgets/mainwindows/application/mainwindow.cpp
-@@ -59,9 +59,11 @@ MainWindow::MainWindow()
- connect(textEdit->document(), &QTextDocument::contentsChanged,
- this, &MainWindow::documentWasModified);
-
-+#ifndef QT_NO_SESSIONMANAGER
- QGuiApplication::setFallbackSessionManagementEnabled(false);
- connect(qApp, &QGuiApplication::commitDataRequest,
- this, &MainWindow::commitData);
-+#endif
-
- setCurrentFile(QString());
- setUnifiedTitleAndToolBarOnMac(true);
-@@ -388,6 +390,7 @@ QString MainWindow::strippedName(const QString &fullFileName)
- }
- //! [49]
-
-+#ifndef QT_NO_SESSIONMANAGER
- void MainWindow::commitData(QSessionManager &manager)
- {
- if (manager.allowsInteraction()) {
-@@ -399,3 +402,4 @@ void MainWindow::commitData(QSessionManager &manager)
- save();
- }
- }
-+#endif
-diff --git a/qtbase/examples/widgets/mainwindows/application/mainwindow.h b/qtbase/examples/widgets/mainwindows/application/mainwindow.h
-index 9712604125b5..690e8ebc32ea 100644
---- a/qtbase/examples/widgets/mainwindows/application/mainwindow.h
-+++ b/qtbase/examples/widgets/mainwindows/application/mainwindow.h
-@@ -70,7 +70,9 @@ private slots:
- bool saveAs();
- void about();
- void documentWasModified();
-+#ifndef QT_NO_SESSIONMANAGER
- void commitData(QSessionManager &);
-+#endif
-
- private:
- void createActions();
diff --git a/patches/qt-everywhere-opensource-src-5.6.0/0100-eglfs-plugin-needs-egl-for-correct-cflags.patch b/patches/qt-everywhere-opensource-src-5.6.1/0100-eglfs-plugin-needs-egl-for-correct-cflags.patch
index 957d0b72a..3baf73a39 100644
--- a/patches/qt-everywhere-opensource-src-5.6.0/0100-eglfs-plugin-needs-egl-for-correct-cflags.patch
+++ b/patches/qt-everywhere-opensource-src-5.6.1/0100-eglfs-plugin-needs-egl-for-correct-cflags.patch
@@ -8,10 +8,10 @@ Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
1 file changed, 2 insertions(+)
diff --git a/qtbase/src/plugins/platforms/eglfs/eglfs-plugin.pro b/qtbase/src/plugins/platforms/eglfs/eglfs-plugin.pro
-index 0f493fdc01d7..79a2e708e894 100644
+index a628cdccd938..f7e3400615e6 100644
--- a/qtbase/src/plugins/platforms/eglfs/eglfs-plugin.pro
+++ b/qtbase/src/plugins/platforms/eglfs/eglfs-plugin.pro
-@@ -7,6 +7,8 @@ load(qt_plugin)
+@@ -2,6 +2,8 @@ TARGET = qeglfs
QT += platformsupport-private eglfs_device_lib-private
diff --git a/patches/qt-everywhere-opensource-src-5.6.0/0101-qtwebengine-make-sure-sysroot-is-always-set-on-ARM.patch b/patches/qt-everywhere-opensource-src-5.6.1/0101-qtwebengine-make-sure-sysroot-is-always-set-on-ARM.patch
index f51b8411c..d084bffce 100644
--- a/patches/qt-everywhere-opensource-src-5.6.0/0101-qtwebengine-make-sure-sysroot-is-always-set-on-ARM.patch
+++ b/patches/qt-everywhere-opensource-src-5.6.1/0101-qtwebengine-make-sure-sysroot-is-always-set-on-ARM.patch
@@ -8,7 +8,7 @@ Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/qtwebengine/src/core/gyp_run.pro b/qtwebengine/src/core/gyp_run.pro
-index dea1a2225ae2..b14c7db4a404 100644
+index 5bedc9acbc29..8ad87b352ea3 100644
--- a/qtwebengine/src/core/gyp_run.pro
+++ b/qtwebengine/src/core/gyp_run.pro
@@ -47,7 +47,7 @@ cross_compile {
diff --git a/patches/qt-everywhere-opensource-src-5.6.0/0103-qt3d-link-with-latomic-if-necessary.patch b/patches/qt-everywhere-opensource-src-5.6.1/0102-qt3d-link-with-latomic-if-necessary.patch
index 0e62abc48..0e62abc48 100644
--- a/patches/qt-everywhere-opensource-src-5.6.0/0103-qt3d-link-with-latomic-if-necessary.patch
+++ b/patches/qt-everywhere-opensource-src-5.6.1/0102-qt3d-link-with-latomic-if-necessary.patch
diff --git a/patches/qt-everywhere-opensource-src-5.6.0/0200-ptxdist-qtwebengine-allow-building-with-ptxdsit.patch b/patches/qt-everywhere-opensource-src-5.6.1/0200-ptxdist-qtwebengine-allow-building-with-ptxdsit.patch
index db225cdc6..db225cdc6 100644
--- a/patches/qt-everywhere-opensource-src-5.6.0/0200-ptxdist-qtwebengine-allow-building-with-ptxdsit.patch
+++ b/patches/qt-everywhere-opensource-src-5.6.1/0200-ptxdist-qtwebengine-allow-building-with-ptxdsit.patch
diff --git a/patches/qt-everywhere-opensource-src-5.6.0/0201-HACK-put-wayland-scanner-outout-in-srcdir.patch b/patches/qt-everywhere-opensource-src-5.6.1/0201-HACK-put-wayland-scanner-outout-in-srcdir.patch
index 2ea4c7587..2ea4c7587 100644
--- a/patches/qt-everywhere-opensource-src-5.6.0/0201-HACK-put-wayland-scanner-outout-in-srcdir.patch
+++ b/patches/qt-everywhere-opensource-src-5.6.1/0201-HACK-put-wayland-scanner-outout-in-srcdir.patch
diff --git a/patches/qt-everywhere-opensource-src-5.6.0/0202-qtwebengine-define-TRUE-in-case-of-USE_SYSTEM_LIBJPE.patch b/patches/qt-everywhere-opensource-src-5.6.1/0202-qtwebengine-define-TRUE-in-case-of-USE_SYSTEM_LIBJPE.patch
index 743650049..743650049 100644
--- a/patches/qt-everywhere-opensource-src-5.6.0/0202-qtwebengine-define-TRUE-in-case-of-USE_SYSTEM_LIBJPE.patch
+++ b/patches/qt-everywhere-opensource-src-5.6.1/0202-qtwebengine-define-TRUE-in-case-of-USE_SYSTEM_LIBJPE.patch
diff --git a/patches/qt-everywhere-opensource-src-5.6.0/series b/patches/qt-everywhere-opensource-src-5.6.1/series
index a6a6c513e..3eb48ca86 100644
--- a/patches/qt-everywhere-opensource-src-5.6.0/series
+++ b/patches/qt-everywhere-opensource-src-5.6.1/series
@@ -1,15 +1,12 @@
# generated by git-ptx-patches
#tag:base --start-number 1
#tag:upstream --start-number 1
-0001-Disable-c-standard-compiler-flags-for-the-host-build.patch
-0002-Search-for-libsystemd-first-fall-back-to-libsystemd-.patch
#tag:fixes --start-number 100
0100-eglfs-plugin-needs-egl-for-correct-cflags.patch
0101-qtwebengine-make-sure-sysroot-is-always-set-on-ARM.patch
-0102-qtbase-examples-fix-building-without-session-managem.patch
-0103-qt3d-link-with-latomic-if-necessary.patch
+0102-qt3d-link-with-latomic-if-necessary.patch
#tag:hacks --start-number 200
0200-ptxdist-qtwebengine-allow-building-with-ptxdsit.patch
0201-HACK-put-wayland-scanner-outout-in-srcdir.patch
0202-qtwebengine-define-TRUE-in-case-of-USE_SYSTEM_LIBJPE.patch
-# 08e3e873ae4e579c68fcd1e3500a81f2 - git-ptx-patches magic
+# 077aaa461e5601f42d59cfd64a4b1ffa - git-ptx-patches magic
diff --git a/rules/qt5.make b/rules/qt5.make
index b0050ef47..e6f78882c 100644
--- a/rules/qt5.make
+++ b/rules/qt5.make
@@ -16,8 +16,8 @@ PACKAGES-$(PTXCONF_QT5) += qt5
#
# Paths and names
#
-QT5_VERSION := 5.6.0
-QT5_MD5 := 47763c168f58b1196271b231f03c8bae
+QT5_VERSION := 5.6.1
+QT5_MD5 := d647574345c45b5ab8b41b2d46efffb9
QT5 := qt-everywhere-opensource-src-$(QT5_VERSION)
QT5_SUFFIX := tar.xz
QT5_URL := \
diff --git a/rules/qt5examples.in b/rules/qt5examples.in
index e7e855782..2c2873371 100644
--- a/rules/qt5examples.in
+++ b/rules/qt5examples.in
@@ -56,6 +56,14 @@ config QT5_EXAMPLES_BLUETOOTH_BTSCANNER
depends on QT5_MODULE_QTBASE_WIDGETS
depends on QT5_MODULE_QTCONNECTIVITY
+config QT5_EXAMPLES_BLUETOOTH_QML_CHAT
+ bool
+ prompt "qml_chat"
+ depends on QT5_MODULE_QTBASE
+ depends on QT5_MODULE_QTBASE_GUI
+ depends on QT5_MODULE_QTCONNECTIVITY
+ depends on QT5_MODULE_QTDECLARATIVE_QUICK
+
config QT5_EXAMPLES_BLUETOOTH_HEARTLISTENER
bool
prompt "heartlistener"
@@ -74,6 +82,15 @@ config QT5_EXAMPLES_BLUETOOTH_LOWENERGYSCANNER
depends on QT5_MODULE_QTDECLARATIVE
depends on QT5_MODULE_QTDECLARATIVE_QUICK
+config QT5_EXAMPLES_BLUETOOTH_QML_PICTURETRANSFER
+ bool
+ prompt "qml_picturetransfer"
+ depends on QT5_MODULE_QTBASE
+ depends on QT5_MODULE_QTBASE_GUI
+ depends on QT5_MODULE_QTCONNECTIVITY
+ depends on QT5_MODULE_QTDECLARATIVE
+ depends on QT5_MODULE_QTDECLARATIVE_QUICK
+
config QT5_EXAMPLES_BLUETOOTH_PINGPONG
bool
prompt "pingpong"
@@ -98,14 +115,6 @@ menuconfig QT5_EXAMPLES_CANVAS3D
if QT5_EXAMPLES_CANVAS3D
-config QT5_EXAMPLES_CANVAS3D_CELLPHONE
- bool
- prompt "cellphone"
- depends on QT5_MODULE_QTBASE
- depends on QT5_MODULE_QTBASE_GUI
- depends on QT5_MODULE_QTCANVAS3D
- depends on QT5_MODULE_QTDECLARATIVE
-
config QT5_EXAMPLES_CANVAS3D_FRAMEBUFFER
bool
prompt "framebuffer"
@@ -132,52 +141,55 @@ config QT5_EXAMPLES_CANVAS3D_JSONMODELS
depends on QT5_MODULE_QTCANVAS3D
depends on QT5_MODULE_QTDECLARATIVE
-config QT5_EXAMPLES_CANVAS3D_ONEQT
+config QT5_EXAMPLES_CANVAS3D_QUICKITEMTEXTURE
bool
- prompt "oneqt"
+ prompt "quickitemtexture"
depends on QT5_MODULE_QTBASE
depends on QT5_MODULE_QTBASE_GUI
depends on QT5_MODULE_QTCANVAS3D
depends on QT5_MODULE_QTDECLARATIVE
- depends on QT5_MODULE_QTDECLARATIVE_QUICK
-config QT5_EXAMPLES_CANVAS3D_PLANETS
+config QT5_EXAMPLES_CANVAS3D_TEXTUREANDLIGHT
bool
- prompt "planets"
+ prompt "textureandlight"
depends on QT5_MODULE_QTBASE
depends on QT5_MODULE_QTBASE_GUI
depends on QT5_MODULE_QTCANVAS3D
depends on QT5_MODULE_QTDECLARATIVE
depends on QT5_MODULE_QTDECLARATIVE_QUICK
-config QT5_EXAMPLES_CANVAS3D_QUICKITEMTEXTURE
+
+menuconfig QT5_EXAMPLES_CANVAS3D_THREEJS
bool
- prompt "quickitemtexture"
+ prompt "threejs "
+
+if QT5_EXAMPLES_CANVAS3D_THREEJS
+
+config QT5_EXAMPLES_CANVAS3D_THREEJS_CELLPHONE
+ bool
+ prompt "cellphone"
depends on QT5_MODULE_QTBASE
depends on QT5_MODULE_QTBASE_GUI
depends on QT5_MODULE_QTCANVAS3D
depends on QT5_MODULE_QTDECLARATIVE
-config QT5_EXAMPLES_CANVAS3D_TEXTUREANDLIGHT
+config QT5_EXAMPLES_CANVAS3D_THREEJS_ONEQT
bool
- prompt "textureandlight"
+ prompt "oneqt"
depends on QT5_MODULE_QTBASE
depends on QT5_MODULE_QTBASE_GUI
depends on QT5_MODULE_QTCANVAS3D
depends on QT5_MODULE_QTDECLARATIVE
depends on QT5_MODULE_QTDECLARATIVE_QUICK
-
-menuconfig QT5_EXAMPLES_CANVAS3D_CANVAS3D_THREEJS
- bool
- prompt "canvas3d/threejs "
-
-if QT5_EXAMPLES_CANVAS3D_CANVAS3D_THREEJS
-
-config QT5_EXAMPLES_CANVAS3D_CANVAS3D_THREEJS_PLANETS
+config QT5_EXAMPLES_CANVAS3D_THREEJS_PLANETS
bool
prompt "planets"
+ depends on QT5_MODULE_QTBASE
+ depends on QT5_MODULE_QTBASE_GUI
depends on QT5_MODULE_QTCANVAS3D
+ depends on QT5_MODULE_QTDECLARATIVE
+ depends on QT5_MODULE_QTDECLARATIVE_QUICK
endif
endif
@@ -235,6 +247,13 @@ config QT5_EXAMPLES_CORELIB_THREADS_MANDELBROT
depends on QT5_MODULE_QTBASE_GUI
depends on QT5_MODULE_QTBASE_WIDGETS
+config QT5_EXAMPLES_CORELIB_THREADS_QUEUEDCUSTOMTYPE
+ bool
+ prompt "queuedcustomtype"
+ depends on QT5_MODULE_QTBASE
+ depends on QT5_MODULE_QTBASE_GUI
+ depends on QT5_MODULE_QTBASE_WIDGETS
+
config QT5_EXAMPLES_CORELIB_THREADS_SEMAPHORES
bool
prompt "semaphores"
@@ -259,6 +278,17 @@ config QT5_EXAMPLES_CORELIB_TOOLS_CONTIGUOUSCACHE
depends on QT5_MODULE_QTBASE
depends on QT5_MODULE_QTBASE_WIDGETS
+config QT5_EXAMPLES_CORELIB_TOOLS_CUSTOMTYPE
+ bool
+ prompt "customtype"
+ depends on QT5_MODULE_QTBASE
+
+config QT5_EXAMPLES_CORELIB_TOOLS_CUSTOMTYPESENDING
+ bool
+ prompt "customtypesending"
+ depends on QT5_MODULE_QTBASE
+ depends on QT5_MODULE_QTBASE_WIDGETS
+
endif
menuconfig QT5_EXAMPLES_DBUS
@@ -361,6 +391,82 @@ config QT5_EXAMPLES_DESIGNER_WORLDTIMECLOCKBUILDER
endif
+menuconfig QT5_EXAMPLES_ENGINIO_QUICK
+ bool
+ prompt "enginio/quick "
+
+if QT5_EXAMPLES_ENGINIO_QUICK
+
+config QT5_EXAMPLES_ENGINIO_QUICK_IMAGE_GALLERY
+ bool
+ prompt "image-gallery"
+ depends on QT5_MODULE_QTBASE
+ depends on QT5_MODULE_QTBASE_GUI
+ depends on QT5_MODULE_QTDECLARATIVE
+ depends on QT5_MODULE_QTDECLARATIVE_QUICK
+ depends on QT5_MODULE_QTENGINIO
+
+config QT5_EXAMPLES_ENGINIO_QUICK_SOCIALTODOS
+ bool
+ prompt "socialtodos"
+ depends on QT5_MODULE_QTBASE
+ depends on QT5_MODULE_QTBASE_GUI
+ depends on QT5_MODULE_QTDECLARATIVE
+ depends on QT5_MODULE_QTDECLARATIVE_QUICK
+ depends on QT5_MODULE_QTENGINIO
+
+config QT5_EXAMPLES_ENGINIO_QUICK_TODOS
+ bool
+ prompt "todos"
+ depends on QT5_MODULE_QTBASE
+ depends on QT5_MODULE_QTBASE_GUI
+ depends on QT5_MODULE_QTDECLARATIVE
+ depends on QT5_MODULE_QTDECLARATIVE_QUICK
+ depends on QT5_MODULE_QTENGINIO
+
+config QT5_EXAMPLES_ENGINIO_QUICK_USERS
+ bool
+ prompt "users"
+ depends on QT5_MODULE_QTBASE
+ depends on QT5_MODULE_QTBASE_GUI
+ depends on QT5_MODULE_QTDECLARATIVE
+ depends on QT5_MODULE_QTDECLARATIVE_QUICK
+ depends on QT5_MODULE_QTENGINIO
+
+endif
+
+menuconfig QT5_EXAMPLES_ENGINIO_WIDGETS
+ bool
+ prompt "enginio/widgets "
+
+if QT5_EXAMPLES_ENGINIO_WIDGETS
+
+config QT5_EXAMPLES_ENGINIO_WIDGETS_CLOUDADDRESSBOOK
+ bool
+ prompt "cloudaddressbook"
+ depends on QT5_MODULE_QTBASE
+ depends on QT5_MODULE_QTBASE_GUI
+ depends on QT5_MODULE_QTBASE_WIDGETS
+ depends on QT5_MODULE_QTENGINIO
+
+config QT5_EXAMPLES_ENGINIO_WIDGETS_IMAGE_GALLERY
+ bool
+ prompt "image-gallery"
+ depends on QT5_MODULE_QTBASE
+ depends on QT5_MODULE_QTBASE_GUI
+ depends on QT5_MODULE_QTBASE_WIDGETS
+ depends on QT5_MODULE_QTENGINIO
+
+config QT5_EXAMPLES_ENGINIO_WIDGETS_TODOS
+ bool
+ prompt "todos"
+ depends on QT5_MODULE_QTBASE
+ depends on QT5_MODULE_QTBASE_GUI
+ depends on QT5_MODULE_QTBASE_WIDGETS
+ depends on QT5_MODULE_QTENGINIO
+
+endif
+
menuconfig QT5_EXAMPLES_GUI
bool
prompt "gui "
@@ -564,6 +670,11 @@ config QT5_EXAMPLES_MULTIMEDIA_VIDEO_QMLVIDEO
depends on QT5_MODULE_QTDECLARATIVE_QUICK
depends on QT5_MODULE_QTMULTIMEDIA
+config QT5_EXAMPLES_MULTIMEDIA_VIDEO_QMLVIDEOFILTER_OPENCL
+ bool
+ prompt "qmlvideofilter_opencl"
+ depends on QT5_MODULE_QTMULTIMEDIA
+
config QT5_EXAMPLES_MULTIMEDIA_VIDEO_QMLVIDEOFX
bool
prompt "qmlvideofx"
@@ -783,6 +894,14 @@ config QT5_EXAMPLES_NFC_ANNOTATEDURL
depends on QT5_MODULE_QTBASE_WIDGETS
depends on QT5_MODULE_QTCONNECTIVITY
+config QT5_EXAMPLES_NFC_QML_CORKBOARD
+ bool
+ prompt "qml_corkboard"
+ depends on QT5_MODULE_QTBASE
+ depends on QT5_MODULE_QTBASE_GUI
+ depends on QT5_MODULE_QTCONNECTIVITY
+ depends on QT5_MODULE_QTDECLARATIVE_QUICK
+
config QT5_EXAMPLES_NFC_NDEFEDITOR
bool
prompt "ndefeditor"
@@ -814,6 +933,13 @@ config QT5_EXAMPLES_OPENGL_2DPAINTING
depends on QT5_MODULE_QTBASE_GUI
depends on QT5_MODULE_QTBASE_WIDGETS
+config QT5_EXAMPLES_OPENGL_CONTEXTINFO
+ bool
+ prompt "contextinfo"
+ depends on QT5_MODULE_QTBASE
+ depends on QT5_MODULE_QTBASE_GUI
+ depends on QT5_MODULE_QTBASE_WIDGETS
+
config QT5_EXAMPLES_OPENGL_CUBE
bool
prompt "cube"
@@ -881,6 +1007,14 @@ menuconfig QT5_EXAMPLES_POSITIONING
if QT5_EXAMPLES_POSITIONING
+config QT5_EXAMPLES_POSITIONING_GEOFLICKR
+ bool
+ prompt "geoflickr"
+ depends on QT5_MODULE_QTBASE
+ depends on QT5_MODULE_QTBASE_GUI
+ depends on QT5_MODULE_QTDECLARATIVE_QUICK
+ depends on QT5_MODULE_QTLOCATION
+
config QT5_EXAMPLES_POSITIONING_LOGFILEPOSITIONSOURCE
bool
prompt "logfilepositionsource"
@@ -888,6 +1022,15 @@ config QT5_EXAMPLES_POSITIONING_LOGFILEPOSITIONSOURCE
depends on QT5_MODULE_QTBASE_WIDGETS
depends on QT5_MODULE_QTLOCATION
+config QT5_EXAMPLES_POSITIONING_SATELLITEINFO
+ bool
+ prompt "satelliteinfo"
+ depends on QT5_MODULE_QTBASE
+ depends on QT5_MODULE_QTBASE_GUI
+ depends on QT5_MODULE_QTDECLARATIVE
+ depends on QT5_MODULE_QTDECLARATIVE_QUICK
+ depends on QT5_MODULE_QTLOCATION
+
config QT5_EXAMPLES_POSITIONING_WEATHERINFO
bool
prompt "weatherinfo"
@@ -1007,6 +1150,62 @@ config QT5_EXAMPLES_QML_REFERENCEEXAMPLES_VALUESOURCE
depends on QT5_MODULE_QTDECLARATIVE
endif
+
+menuconfig QT5_EXAMPLES_QML_TUTORIALS_EXTENDING_QML
+ bool
+ prompt "tutorials/extending-qml "
+
+if QT5_EXAMPLES_QML_TUTORIALS_EXTENDING_QML
+
+config QT5_EXAMPLES_QML_TUTORIALS_EXTENDING_QML_CHAPTER1_BASICS
+ bool
+ prompt "chapter1-basics"
+ depends on QT5_MODULE_QTBASE
+ depends on QT5_MODULE_QTBASE_GUI
+ depends on QT5_MODULE_QTDECLARATIVE
+ depends on QT5_MODULE_QTDECLARATIVE_QUICK
+
+config QT5_EXAMPLES_QML_TUTORIALS_EXTENDING_QML_CHAPTER2_METHODS
+ bool
+ prompt "chapter2-methods"
+ depends on QT5_MODULE_QTBASE
+ depends on QT5_MODULE_QTBASE_GUI
+ depends on QT5_MODULE_QTDECLARATIVE
+ depends on QT5_MODULE_QTDECLARATIVE_QUICK
+
+config QT5_EXAMPLES_QML_TUTORIALS_EXTENDING_QML_CHAPTER3_BINDINGS
+ bool
+ prompt "chapter3-bindings"
+ depends on QT5_MODULE_QTBASE
+ depends on QT5_MODULE_QTBASE_GUI
+ depends on QT5_MODULE_QTDECLARATIVE
+ depends on QT5_MODULE_QTDECLARATIVE_QUICK
+
+config QT5_EXAMPLES_QML_TUTORIALS_EXTENDING_QML_CHAPTER4_CUSTOMPROPERTYTYPES
+ bool
+ prompt "chapter4-customPropertyTypes"
+ depends on QT5_MODULE_QTBASE
+ depends on QT5_MODULE_QTBASE_GUI
+ depends on QT5_MODULE_QTDECLARATIVE
+ depends on QT5_MODULE_QTDECLARATIVE_QUICK
+
+config QT5_EXAMPLES_QML_TUTORIALS_EXTENDING_QML_CHAPTER5_LISTPROPERTIES
+ bool
+ prompt "chapter5-listproperties"
+ depends on QT5_MODULE_QTBASE
+ depends on QT5_MODULE_QTBASE_GUI
+ depends on QT5_MODULE_QTDECLARATIVE
+ depends on QT5_MODULE_QTDECLARATIVE_QUICK
+
+config QT5_EXAMPLES_QML_TUTORIALS_EXTENDING_QML_CHAPTER6_PLUGINS
+ bool
+ prompt "chapter6-plugins"
+ depends on QT5_MODULE_QTBASE
+ depends on QT5_MODULE_QTBASE_GUI
+ depends on QT5_MODULE_QTDECLARATIVE
+ depends on QT5_MODULE_QTDECLARATIVE_QUICK
+
+endif
endif
menuconfig QT5_EXAMPLES_QPA
@@ -1469,55 +1668,6 @@ config QT5_EXAMPLES_QTESTLIB_TUTORIAL5
endif
-menuconfig QT5_EXAMPLES_QTLABSCONTROLS
- bool
- prompt "qtlabscontrols "
-
-if QT5_EXAMPLES_QTLABSCONTROLS
-
-config QT5_EXAMPLES_QTLABSCONTROLS_GALLERY
- bool
- prompt "gallery"
- depends on QT5_MODULE_QTBASE
- depends on QT5_MODULE_QTBASE_GUI
- depends on QT5_MODULE_QTDECLARATIVE
- depends on QT5_MODULE_QTQUICKCONTROLS2
-
-endif
-
-menuconfig QT5_EXAMPLES_QTPOSITIONING
- bool
- prompt "qtpositioning "
-
-if QT5_EXAMPLES_QTPOSITIONING
-
-config QT5_EXAMPLES_QTPOSITIONING_SATELLITEINFO
- bool
- prompt "satelliteinfo"
- depends on QT5_MODULE_QTBASE
- depends on QT5_MODULE_QTBASE_GUI
- depends on QT5_MODULE_QTDECLARATIVE
- depends on QT5_MODULE_QTDECLARATIVE_QUICK
- depends on QT5_MODULE_QTLOCATION
-
-endif
-
-menuconfig QT5_EXAMPLES_QTSENSORS
- bool
- prompt "qtsensors "
-
-if QT5_EXAMPLES_QTSENSORS
-
-config QT5_EXAMPLES_QTSENSORS_SHAKEIT
- bool
- prompt "shakeit"
- depends on QT5_MODULE_QTBASE
- depends on QT5_MODULE_QTBASE_GUI
- depends on QT5_MODULE_QTDECLARATIVE_QUICK
- depends on QT5_MODULE_QTSENSORS
-
-endif
-
menuconfig QT5_EXAMPLES_QUICK
bool
prompt "quick "
@@ -1637,6 +1787,14 @@ config QT5_EXAMPLES_QUICK_TEXT
depends on QT5_MODULE_QTDECLARATIVE
depends on QT5_MODULE_QTDECLARATIVE_QUICK
+config QT5_EXAMPLES_QUICK_TEXTUREPROVIDER
+ bool
+ prompt "textureprovider"
+ depends on QT5_MODULE_QTBASE
+ depends on QT5_MODULE_QTBASE_GUI
+ depends on QT5_MODULE_QTDECLARATIVE
+ depends on QT5_MODULE_QTDECLARATIVE_QUICK
+
config QT5_EXAMPLES_QUICK_THREADING
bool
prompt "threading"
@@ -1784,22 +1942,6 @@ config QT5_EXAMPLES_QUICK_DEMOS_TWEETSEARCH
endif
-menuconfig QT5_EXAMPLES_QUICK_DIALOGS
- bool
- prompt "dialogs "
-
-if QT5_EXAMPLES_QUICK_DIALOGS
-
-config QT5_EXAMPLES_QUICK_DIALOGS_SYSTEMDIALOGS
- bool
- prompt "systemdialogs"
- depends on QT5_MODULE_QTBASE
- depends on QT5_MODULE_QTBASE_GUI
- depends on QT5_MODULE_QTBASE_WIDGETS
- depends on QT5_MODULE_QTDECLARATIVE
-
-endif
-
menuconfig QT5_EXAMPLES_QUICK_LOCALSTORAGE
bool
prompt "localstorage "
@@ -1896,6 +2038,31 @@ config QT5_EXAMPLES_QUICK_PARTICLES_SYSTEM
endif
+menuconfig QT5_EXAMPLES_QUICK_QUICKWIDGETS
+ bool
+ prompt "quickwidgets "
+
+if QT5_EXAMPLES_QUICK_QUICKWIDGETS
+
+config QT5_EXAMPLES_QUICK_QUICKWIDGETS_QQUICKVIEWCOMPARISON
+ bool
+ prompt "qquickviewcomparison"
+ depends on QT5_MODULE_QTBASE
+ depends on QT5_MODULE_QTBASE_GUI
+ depends on QT5_MODULE_QTBASE_WIDGETS
+ depends on QT5_MODULE_QTDECLARATIVE
+ depends on QT5_MODULE_QTDECLARATIVE_QUICK
+
+config QT5_EXAMPLES_QUICK_QUICKWIDGETS_QUICKWIDGET
+ bool
+ prompt "quickwidget"
+ depends on QT5_MODULE_QTBASE
+ depends on QT5_MODULE_QTBASE_GUI
+ depends on QT5_MODULE_QTBASE_WIDGETS
+ depends on QT5_MODULE_QTDECLARATIVE
+
+endif
+
menuconfig QT5_EXAMPLES_QUICK_SCENEGRAPH
bool
prompt "scenegraph "
@@ -1910,6 +2077,14 @@ config QT5_EXAMPLES_QUICK_SCENEGRAPH_CUSTOMGEOMETRY
depends on QT5_MODULE_QTDECLARATIVE
depends on QT5_MODULE_QTDECLARATIVE_QUICK
+config QT5_EXAMPLES_QUICK_SCENEGRAPH_GRAPH
+ bool
+ prompt "graph"
+ depends on QT5_MODULE_QTBASE
+ depends on QT5_MODULE_QTBASE_GUI
+ depends on QT5_MODULE_QTDECLARATIVE
+ depends on QT5_MODULE_QTDECLARATIVE_QUICK
+
config QT5_EXAMPLES_QUICK_SCENEGRAPH_OPENGLUNDERQML
bool
prompt "openglunderqml"
@@ -1967,6 +2142,143 @@ config QT5_EXAMPLES_QUICK_SCENEGRAPH_TWOTEXTUREPROVIDERS
depends on QT5_MODULE_QTDECLARATIVE_QUICK
endif
+
+menuconfig QT5_EXAMPLES_QUICKCONTROLS_CONTROLS
+ bool
+ prompt "controls/controls "
+
+if QT5_EXAMPLES_QUICKCONTROLS_CONTROLS
+
+config QT5_EXAMPLES_QUICKCONTROLS_CONTROLS_BASICLAYOUTS
+ bool
+ prompt "basiclayouts"
+ depends on QT5_MODULE_QTBASE
+ depends on QT5_MODULE_QTBASE_WIDGETS
+ depends on QT5_MODULE_QTDECLARATIVE
+
+config QT5_EXAMPLES_QUICKCONTROLS_CONTROLS_CALENDAR
+ bool
+ prompt "calendar"
+ depends on QT5_MODULE_QTBASE
+ depends on QT5_MODULE_QTBASE_SQL
+ depends on QT5_MODULE_QTBASE_WIDGETS
+ depends on QT5_MODULE_QTDECLARATIVE
+
+config QT5_EXAMPLES_QUICKCONTROLS_CONTROLS_FILESYSTEMBROWSER
+ bool
+ prompt "filesystembrowser"
+ depends on QT5_MODULE_QTBASE
+ depends on QT5_MODULE_QTBASE_WIDGETS
+ depends on QT5_MODULE_QTDECLARATIVE
+
+config QT5_EXAMPLES_QUICKCONTROLS_CONTROLS_GALLERY
+ bool
+ prompt "gallery"
+ depends on QT5_MODULE_QTBASE
+ depends on QT5_MODULE_QTBASE_GUI
+ depends on QT5_MODULE_QTBASE_WIDGETS
+ depends on QT5_MODULE_QTDECLARATIVE
+
+config QT5_EXAMPLES_QUICKCONTROLS_CONTROLS_STYLES
+ bool
+ prompt "styles"
+ depends on QT5_MODULE_QTBASE
+ depends on QT5_MODULE_QTBASE_GUI
+ depends on QT5_MODULE_QTDECLARATIVE
+
+config QT5_EXAMPLES_QUICKCONTROLS_CONTROLS_TABLEVIEW
+ bool
+ prompt "tableview"
+ depends on QT5_MODULE_QTBASE
+ depends on QT5_MODULE_QTBASE_GUI
+ depends on QT5_MODULE_QTBASE_WIDGETS
+ depends on QT5_MODULE_QTDECLARATIVE
+
+config QT5_EXAMPLES_QUICKCONTROLS_CONTROLS_TEXTEDITOR
+ bool
+ prompt "texteditor"
+ depends on QT5_MODULE_QTBASE
+ depends on QT5_MODULE_QTBASE_GUI
+ depends on QT5_MODULE_QTBASE_WIDGETS
+ depends on QT5_MODULE_QTDECLARATIVE
+ depends on QT5_MODULE_QTDECLARATIVE_QUICK
+
+config QT5_EXAMPLES_QUICKCONTROLS_CONTROLS_TOUCH
+ bool
+ prompt "touch"
+ depends on QT5_MODULE_QTBASE
+ depends on QT5_MODULE_QTBASE_WIDGETS
+ depends on QT5_MODULE_QTDECLARATIVE
+
+config QT5_EXAMPLES_QUICKCONTROLS_CONTROLS_UIFORMS
+ bool
+ prompt "uiforms"
+ depends on QT5_MODULE_QTBASE
+ depends on QT5_MODULE_QTBASE_GUI
+ depends on QT5_MODULE_QTBASE_WIDGETS
+ depends on QT5_MODULE_QTDECLARATIVE
+
+endif
+
+menuconfig QT5_EXAMPLES_QUICKCONTROLS_DIALOGS
+ bool
+ prompt "controls/dialogs "
+
+if QT5_EXAMPLES_QUICKCONTROLS_DIALOGS
+
+config QT5_EXAMPLES_QUICKCONTROLS_DIALOGS_SYSTEMDIALOGS
+ bool
+ prompt "systemdialogs"
+ depends on QT5_MODULE_QTBASE
+ depends on QT5_MODULE_QTBASE_GUI
+ depends on QT5_MODULE_QTBASE_WIDGETS
+ depends on QT5_MODULE_QTDECLARATIVE
+
+endif
+
+menuconfig QT5_EXAMPLES_QUICKCONTROLS_EXTRAS
+ bool
+ prompt "controls/extras "
+
+if QT5_EXAMPLES_QUICKCONTROLS_EXTRAS
+
+config QT5_EXAMPLES_QUICKCONTROLS_EXTRAS_DASHBOARD
+ bool
+ prompt "dashboard"
+ depends on QT5_MODULE_QTBASE
+ depends on QT5_MODULE_QTBASE_GUI
+ depends on QT5_MODULE_QTDECLARATIVE
+
+config QT5_EXAMPLES_QUICKCONTROLS_EXTRAS_FLAT
+ bool
+ prompt "flat"
+ depends on QT5_MODULE_QTBASE
+ depends on QT5_MODULE_QTBASE_GUI
+ depends on QT5_MODULE_QTDECLARATIVE
+
+config QT5_EXAMPLES_QUICKCONTROLS_EXTRAS_GALLERY
+ bool
+ prompt "gallery"
+ depends on QT5_MODULE_QTBASE
+ depends on QT5_MODULE_QTBASE_GUI
+ depends on QT5_MODULE_QTDECLARATIVE
+
+endif
+
+menuconfig QT5_EXAMPLES_QUICKCONTROLS2
+ bool
+ prompt "controls2 "
+
+if QT5_EXAMPLES_QUICKCONTROLS2
+
+config QT5_EXAMPLES_QUICKCONTROLS2_GALLERY
+ bool
+ prompt "gallery"
+ depends on QT5_MODULE_QTBASE
+ depends on QT5_MODULE_QTBASE_GUI
+ depends on QT5_MODULE_QTDECLARATIVE
+
+endif
endif
menuconfig QT5_EXAMPLES_SCRIPT
@@ -2057,6 +2369,14 @@ config QT5_EXAMPLES_SENSORS_ACCELBUBBLE
depends on QT5_MODULE_QTDECLARATIVE
depends on QT5_MODULE_QTSENSORS
+config QT5_EXAMPLES_SENSORS_GRUE_APP
+ bool
+ prompt "grue_app"
+ depends on QT5_MODULE_QTBASE
+ depends on QT5_MODULE_QTBASE_GUI
+ depends on QT5_MODULE_QTDECLARATIVE_QUICK
+ depends on QT5_MODULE_QTSENSORS
+
config QT5_EXAMPLES_SENSORS_MAZE
bool
prompt "maze"
@@ -2091,6 +2411,154 @@ config QT5_EXAMPLES_SENSORS_SENSOR_EXPLORER
depends on QT5_MODULE_QTDECLARATIVE_QUICK
depends on QT5_MODULE_QTSENSORS
+config QT5_EXAMPLES_SENSORS_GESTURE
+ bool
+ prompt "gesture"
+ depends on QT5_MODULE_QTBASE
+ depends on QT5_MODULE_QTBASE_WIDGETS
+ depends on QT5_MODULE_QTSENSORS
+
+config QT5_EXAMPLES_SENSORS_SHAKEIT
+ bool
+ prompt "shakeit"
+ depends on QT5_MODULE_QTBASE
+ depends on QT5_MODULE_QTBASE_GUI
+ depends on QT5_MODULE_QTDECLARATIVE_QUICK
+ depends on QT5_MODULE_QTSENSORS
+
+endif
+
+menuconfig QT5_EXAMPLES_SERIALBUS
+ bool
+ prompt "serialbus "
+
+if QT5_EXAMPLES_SERIALBUS
+
+config QT5_EXAMPLES_SERIALBUS_CAN
+ bool
+ prompt "can"
+ depends on QT5_MODULE_
+ depends on QT5_MODULE_QTBASE
+ depends on QT5_MODULE_QTBASE_GUI
+ depends on QT5_MODULE_QTBASE_WIDGETS
+
+
+menuconfig QT5_EXAMPLES_SERIALBUS_MODBUS
+ bool
+ prompt "modbus "
+
+if QT5_EXAMPLES_SERIALBUS_MODBUS
+
+config QT5_EXAMPLES_SERIALBUS_MODBUS_ADUEDITOR
+ bool
+ prompt "adueditor"
+ depends on QT5_MODULE_
+ depends on QT5_MODULE_QTBASE
+ depends on QT5_MODULE_QTBASE_GUI
+ depends on QT5_MODULE_QTBASE_WIDGETS
+
+config QT5_EXAMPLES_SERIALBUS_MODBUS_MODBUSMASTER
+ bool
+ prompt "modbusmaster"
+ depends on QT5_MODULE_
+ depends on QT5_MODULE_QTBASE
+ depends on QT5_MODULE_QTBASE_GUI
+ depends on QT5_MODULE_QTBASE_WIDGETS
+
+config QT5_EXAMPLES_SERIALBUS_MODBUS_MODBUSSLAVE
+ bool
+ prompt "modbusslave"
+ depends on QT5_MODULE_
+ depends on QT5_MODULE_QTBASE
+ depends on QT5_MODULE_QTBASE_GUI
+ depends on QT5_MODULE_QTBASE_WIDGETS
+
+endif
+endif
+
+menuconfig QT5_EXAMPLES_SERIALPORT
+ bool
+ prompt "serialport "
+
+if QT5_EXAMPLES_SERIALPORT
+
+config QT5_EXAMPLES_SERIALPORT_BLOCKINGMASTER
+ bool
+ prompt "blockingmaster"
+ depends on QT5_MODULE_QTBASE
+ depends on QT5_MODULE_QTBASE_GUI
+ depends on QT5_MODULE_QTBASE_WIDGETS
+ depends on QT5_MODULE_QTSERIALPORT
+
+config QT5_EXAMPLES_SERIALPORT_BLOCKINGSLAVE
+ bool
+ prompt "blockingslave"
+ depends on QT5_MODULE_QTBASE
+ depends on QT5_MODULE_QTBASE_GUI
+ depends on QT5_MODULE_QTBASE_WIDGETS
+ depends on QT5_MODULE_QTSERIALPORT
+
+config QT5_EXAMPLES_SERIALPORT_CENUMERATOR
+ bool
+ prompt "cenumerator"
+ depends on QT5_MODULE_QTBASE
+ depends on QT5_MODULE_QTSERIALPORT
+
+config QT5_EXAMPLES_SERIALPORT_CREADERASYNC
+ bool
+ prompt "creaderasync"
+ depends on QT5_MODULE_QTBASE
+ depends on QT5_MODULE_QTSERIALPORT
+
+config QT5_EXAMPLES_SERIALPORT_CREADERSYNC
+ bool
+ prompt "creadersync"
+ depends on QT5_MODULE_QTBASE
+ depends on QT5_MODULE_QTSERIALPORT
+
+config QT5_EXAMPLES_SERIALPORT_CWRITERASYNC
+ bool
+ prompt "cwriterasync"
+ depends on QT5_MODULE_QTBASE
+ depends on QT5_MODULE_QTSERIALPORT
+
+config QT5_EXAMPLES_SERIALPORT_CWRITERSYNC
+ bool
+ prompt "cwritersync"
+ depends on QT5_MODULE_QTBASE
+ depends on QT5_MODULE_QTSERIALPORT
+
+config QT5_EXAMPLES_SERIALPORT_ENUMERATOR
+ bool
+ prompt "enumerator"
+ depends on QT5_MODULE_QTBASE
+ depends on QT5_MODULE_QTBASE_WIDGETS
+ depends on QT5_MODULE_QTSERIALPORT
+
+config QT5_EXAMPLES_SERIALPORT_MASTER
+ bool
+ prompt "master"
+ depends on QT5_MODULE_QTBASE
+ depends on QT5_MODULE_QTBASE_GUI
+ depends on QT5_MODULE_QTBASE_WIDGETS
+ depends on QT5_MODULE_QTSERIALPORT
+
+config QT5_EXAMPLES_SERIALPORT_SLAVE
+ bool
+ prompt "slave"
+ depends on QT5_MODULE_QTBASE
+ depends on QT5_MODULE_QTBASE_GUI
+ depends on QT5_MODULE_QTBASE_WIDGETS
+ depends on QT5_MODULE_QTSERIALPORT
+
+config QT5_EXAMPLES_SERIALPORT_TERMINAL
+ bool
+ prompt "terminal"
+ depends on QT5_MODULE_QTBASE
+ depends on QT5_MODULE_QTBASE_GUI
+ depends on QT5_MODULE_QTBASE_WIDGETS
+ depends on QT5_MODULE_QTSERIALPORT
+
endif
menuconfig QT5_EXAMPLES_SQL
@@ -2351,12 +2819,42 @@ config QT5_EXAMPLES_UITOOLS_TEXTFINDER
endif
+menuconfig QT5_EXAMPLES_WEBCHANNEL
+ bool
+ prompt "webchannel "
+
+if QT5_EXAMPLES_WEBCHANNEL
+
+config QT5_EXAMPLES_WEBCHANNEL_CHATSERVER
+ bool
+ prompt "chatserver"
+ depends on QT5_MODULE_QTBASE
+ depends on QT5_MODULE_QTWEBCHANNEL
+
+config QT5_EXAMPLES_WEBCHANNEL_STANDALONE
+ bool
+ prompt "standalone"
+ depends on QT5_MODULE_QTBASE
+ depends on QT5_MODULE_QTBASE_GUI
+ depends on QT5_MODULE_QTBASE_WIDGETS
+ depends on QT5_MODULE_QTWEBCHANNEL
+
+endif
+
menuconfig QT5_EXAMPLES_WEBENGINE
bool
prompt "webengine "
if QT5_EXAMPLES_WEBENGINE
+config QT5_EXAMPLES_WEBENGINE_MINIMAL
+ bool
+ prompt "minimal"
+ depends on QT5_MODULE_QTBASE
+ depends on QT5_MODULE_QTBASE_GUI
+ depends on QT5_MODULE_QTDECLARATIVE
+ depends on QT5_MODULE_QTWEBENGINE
+
config QT5_EXAMPLES_WEBENGINE_QUICKNANOBROWSER
bool
prompt "quicknanobrowser"
@@ -2380,6 +2878,14 @@ config QT5_EXAMPLES_WEBENGINEWIDGETS_CONTENTMANIPULATION
depends on QT5_MODULE_QTBASE_WIDGETS
depends on QT5_MODULE_QTWEBENGINE
+config QT5_EXAMPLES_WEBENGINEWIDGETS_COOKIEBROWSER
+ bool
+ prompt "cookiebrowser"
+ depends on QT5_MODULE_QTBASE
+ depends on QT5_MODULE_QTBASE_GUI
+ depends on QT5_MODULE_QTBASE_WIDGETS
+ depends on QT5_MODULE_QTWEBENGINE
+
config QT5_EXAMPLES_WEBENGINEWIDGETS_DEMOBROWSER
bool
prompt "demobrowser"
@@ -2396,9 +2902,78 @@ config QT5_EXAMPLES_WEBENGINEWIDGETS_MARKDOWNEDITOR
depends on QT5_MODULE_QTBASE_WIDGETS
depends on QT5_MODULE_QTWEBENGINE
+config QT5_EXAMPLES_WEBENGINEWIDGETS_MINIMAL
+ bool
+ prompt "minimal"
+ depends on QT5_MODULE_QTBASE
+ depends on QT5_MODULE_QTBASE_WIDGETS
+ depends on QT5_MODULE_QTWEBENGINE
+
+config QT5_EXAMPLES_WEBENGINEWIDGETS_SIMPLEBROWSER
+ bool
+ prompt "simplebrowser"
+ depends on QT5_MODULE_QTBASE
+ depends on QT5_MODULE_QTBASE_GUI
+ depends on QT5_MODULE_QTBASE_WIDGETS
+ depends on QT5_MODULE_QTWEBENGINE
+
endif
endif
+menuconfig QT5_EXAMPLES_WEBSOCKETS
+ bool
+ prompt "websockets "
+
+if QT5_EXAMPLES_WEBSOCKETS
+
+config QT5_EXAMPLES_WEBSOCKETS_ECHOCLIENT
+ bool
+ prompt "echoclient"
+ depends on QT5_MODULE_QTBASE
+ depends on QT5_MODULE_QTWEBSOCKETS
+
+config QT5_EXAMPLES_WEBSOCKETS_ECHOSERVER
+ bool
+ prompt "echoserver"
+ depends on QT5_MODULE_QTBASE
+ depends on QT5_MODULE_QTWEBSOCKETS
+
+config QT5_EXAMPLES_WEBSOCKETS_QMLWEBSOCKETCLIENT
+ bool
+ prompt "qmlwebsocketclient"
+ depends on QT5_MODULE_QTBASE
+ depends on QT5_MODULE_QTBASE_GUI
+ depends on QT5_MODULE_QTDECLARATIVE_QUICK
+ depends on QT5_MODULE_QTWEBSOCKETS
+
+config QT5_EXAMPLES_WEBSOCKETS_QMLWEBSOCKETSERVER
+ bool
+ prompt "qmlwebsocketserver"
+ depends on QT5_MODULE_QTBASE
+ depends on QT5_MODULE_QTBASE_GUI
+ depends on QT5_MODULE_QTDECLARATIVE_QUICK
+ depends on QT5_MODULE_QTWEBSOCKETS
+
+config QT5_EXAMPLES_WEBSOCKETS_CHATSERVER
+ bool
+ prompt "chatserver"
+ depends on QT5_MODULE_QTBASE
+ depends on QT5_MODULE_QTWEBSOCKETS
+
+config QT5_EXAMPLES_WEBSOCKETS_SSLECHOCLIENT
+ bool
+ prompt "sslechoclient"
+ depends on QT5_MODULE_QTBASE
+ depends on QT5_MODULE_QTWEBSOCKETS
+
+config QT5_EXAMPLES_WEBSOCKETS_SSLECHOSERVER
+ bool
+ prompt "sslechoserver"
+ depends on QT5_MODULE_QTBASE
+ depends on QT5_MODULE_QTWEBSOCKETS
+
+endif
+
menuconfig QT5_EXAMPLES_WEBVIEW
bool
prompt "webview "
@@ -2896,6 +3471,12 @@ config QT5_EXAMPLES_WIDGETS_ITEMVIEWS_STARDELEGATE
depends on QT5_MODULE_QTBASE_GUI
depends on QT5_MODULE_QTBASE_WIDGETS
+config QT5_EXAMPLES_WIDGETS_ITEMVIEWS_STORAGEVIEW
+ bool
+ prompt "storageview"
+ depends on QT5_MODULE_QTBASE
+ depends on QT5_MODULE_QTBASE_WIDGETS
+
endif
menuconfig QT5_EXAMPLES_WIDGETS_LAYOUTS
diff --git a/rules/qt5examples.make b/rules/qt5examples.make
index 87f3d69f6..b77f41dd4 100644
--- a/rules/qt5examples.make
+++ b/rules/qt5examples.make
@@ -94,6 +94,12 @@ ifdef PTXCONF_QT5_EXAMPLES_BLUETOOTH_BTSCANNER
endif
endif
ifneq ($(strip $(PTXCONF_QT5_MODULE_QTCONNECTIVITY)),)
+ifdef PTXCONF_QT5_EXAMPLES_BLUETOOTH_QML_CHAT
+ @$(call install_copy, qt5-examples, 0, 0, 0755, -, \
+ /usr/lib/qt5/examples/bluetooth/chat/qml_chat)
+endif
+endif
+ifneq ($(strip $(PTXCONF_QT5_MODULE_QTCONNECTIVITY)),)
ifdef PTXCONF_QT5_EXAMPLES_BLUETOOTH_HEARTLISTENER
@$(call install_copy, qt5-examples, 0, 0, 0755, -, \
/usr/lib/qt5/examples/bluetooth/heartlistener/heartlistener)
@@ -106,6 +112,14 @@ ifdef PTXCONF_QT5_EXAMPLES_BLUETOOTH_LOWENERGYSCANNER
endif
endif
ifneq ($(strip $(PTXCONF_QT5_MODULE_QTCONNECTIVITY)),)
+ifdef PTXCONF_QT5_EXAMPLES_BLUETOOTH_QML_PICTURETRANSFER
+ @$(call install_copy, qt5-examples, 0, 0, 0644, -, \
+ /usr/lib/qt5/examples/bluetooth/picturetransfer/icon.png)
+ @$(call install_copy, qt5-examples, 0, 0, 0755, -, \
+ /usr/lib/qt5/examples/bluetooth/picturetransfer/qml_picturetransfer)
+endif
+endif
+ifneq ($(strip $(PTXCONF_QT5_MODULE_QTCONNECTIVITY)),)
ifdef PTXCONF_QT5_EXAMPLES_BLUETOOTH_PINGPONG
@$(call install_copy, qt5-examples, 0, 0, 0755, -, \
/usr/lib/qt5/examples/bluetooth/pingpong/pingpong)
@@ -118,12 +132,6 @@ ifdef PTXCONF_QT5_EXAMPLES_BLUETOOTH_QML_SCANNER
endif
endif
ifneq ($(strip $(PTXCONF_QT5_MODULE_QTCANVAS3D)),)
-ifdef PTXCONF_QT5_EXAMPLES_CANVAS3D_CELLPHONE
- @$(call install_copy, qt5-examples, 0, 0, 0755, -, \
- /usr/lib/qt5/examples/canvas3d/cellphone/cellphone)
-endif
-endif
-ifneq ($(strip $(PTXCONF_QT5_MODULE_QTCANVAS3D)),)
ifdef PTXCONF_QT5_EXAMPLES_CANVAS3D_FRAMEBUFFER
@$(call install_copy, qt5-examples, 0, 0, 0755, -, \
/usr/lib/qt5/examples/canvas3d/framebuffer/framebuffer)
@@ -131,46 +139,124 @@ endif
endif
ifneq ($(strip $(PTXCONF_QT5_MODULE_QTCANVAS3D)),)
ifdef PTXCONF_QT5_EXAMPLES_CANVAS3D_INTERACTION
+ @$(call install_copy, qt5-examples, 0, 0, 0644, -, \
+ /usr/lib/qt5/examples/canvas3d/interaction/3dmodels.txt)
@$(call install_copy, qt5-examples, 0, 0, 0755, -, \
/usr/lib/qt5/examples/canvas3d/interaction/interaction)
+ @$(call install_copy, qt5-examples, 0, 0, 0644, -, \
+ /usr/lib/qt5/examples/canvas3d/interaction/readme.txt)
endif
endif
ifneq ($(strip $(PTXCONF_QT5_MODULE_QTCANVAS3D)),)
ifdef PTXCONF_QT5_EXAMPLES_CANVAS3D_JSONMODELS
+ @$(call install_copy, qt5-examples, 0, 0, 0644, -, \
+ /usr/lib/qt5/examples/canvas3d/jsonmodels/3dmodels.txt)
@$(call install_copy, qt5-examples, 0, 0, 0755, -, \
/usr/lib/qt5/examples/canvas3d/jsonmodels/jsonmodels)
+ @$(call install_copy, qt5-examples, 0, 0, 0644, -, \
+ /usr/lib/qt5/examples/canvas3d/jsonmodels/readme.txt)
endif
endif
ifneq ($(strip $(PTXCONF_QT5_MODULE_QTCANVAS3D)),)
-ifdef PTXCONF_QT5_EXAMPLES_CANVAS3D_ONEQT
+ifdef PTXCONF_QT5_EXAMPLES_CANVAS3D_QUICKITEMTEXTURE
@$(call install_copy, qt5-examples, 0, 0, 0755, -, \
- /usr/lib/qt5/examples/canvas3d/oneqt/oneqt)
+ /usr/lib/qt5/examples/canvas3d/quickitemtexture/quickitemtexture)
endif
endif
ifneq ($(strip $(PTXCONF_QT5_MODULE_QTCANVAS3D)),)
-ifdef PTXCONF_QT5_EXAMPLES_CANVAS3D_PLANETS
+ifdef PTXCONF_QT5_EXAMPLES_CANVAS3D_TEXTUREANDLIGHT
@$(call install_copy, qt5-examples, 0, 0, 0755, -, \
- /usr/lib/qt5/examples/canvas3d/planets/planets)
+ /usr/lib/qt5/examples/canvas3d/textureandlight/textureandlight)
endif
endif
ifneq ($(strip $(PTXCONF_QT5_MODULE_QTCANVAS3D)),)
-ifdef PTXCONF_QT5_EXAMPLES_CANVAS3D_QUICKITEMTEXTURE
+ifdef PTXCONF_QT5_EXAMPLES_CANVAS3D_THREEJS_CELLPHONE
@$(call install_copy, qt5-examples, 0, 0, 0755, -, \
- /usr/lib/qt5/examples/canvas3d/quickitemtexture/quickitemtexture)
+ /usr/lib/qt5/examples/canvas3d/threejs/cellphone/cellphone)
endif
endif
ifneq ($(strip $(PTXCONF_QT5_MODULE_QTCANVAS3D)),)
-ifdef PTXCONF_QT5_EXAMPLES_CANVAS3D_TEXTUREANDLIGHT
+ifdef PTXCONF_QT5_EXAMPLES_CANVAS3D_THREEJS_ONEQT
+ @$(call install_copy, qt5-examples, 0, 0, 0644, -, \
+ /usr/lib/qt5/examples/canvas3d/threejs/oneqt/ios/Info.plist)
+ @$(call install_copy, qt5-examples, 0, 0, 0644, -, \
+ /usr/lib/qt5/examples/canvas3d/threejs/oneqt/ios/OneQtIcon29x29.png)
+ @$(call install_copy, qt5-examples, 0, 0, 0644, -, \
+ /usr/lib/qt5/examples/canvas3d/threejs/oneqt/ios/OneQtIcon29x29@2x.png)
+ @$(call install_copy, qt5-examples, 0, 0, 0644, -, \
+ /usr/lib/qt5/examples/canvas3d/threejs/oneqt/ios/OneQtIcon29x29@2x~ipad.png)
+ @$(call install_copy, qt5-examples, 0, 0, 0644, -, \
+ /usr/lib/qt5/examples/canvas3d/threejs/oneqt/ios/OneQtIcon29x29~ipad.png)
+ @$(call install_copy, qt5-examples, 0, 0, 0644, -, \
+ /usr/lib/qt5/examples/canvas3d/threejs/oneqt/ios/OneQtIcon40x40@2x.png)
+ @$(call install_copy, qt5-examples, 0, 0, 0644, -, \
+ /usr/lib/qt5/examples/canvas3d/threejs/oneqt/ios/OneQtIcon40x40@2x~ipad.png)
+ @$(call install_copy, qt5-examples, 0, 0, 0644, -, \
+ /usr/lib/qt5/examples/canvas3d/threejs/oneqt/ios/OneQtIcon40x40~ipad.png)
+ @$(call install_copy, qt5-examples, 0, 0, 0644, -, \
+ /usr/lib/qt5/examples/canvas3d/threejs/oneqt/ios/OneQtIcon50x50@2x~ipad.png)
+ @$(call install_copy, qt5-examples, 0, 0, 0644, -, \
+ /usr/lib/qt5/examples/canvas3d/threejs/oneqt/ios/OneQtIcon50x50~ipad.png)
+ @$(call install_copy, qt5-examples, 0, 0, 0644, -, \
+ /usr/lib/qt5/examples/canvas3d/threejs/oneqt/ios/OneQtIcon57x57.png)
+ @$(call install_copy, qt5-examples, 0, 0, 0644, -, \
+ /usr/lib/qt5/examples/canvas3d/threejs/oneqt/ios/OneQtIcon57x57@2x.png)
+ @$(call install_copy, qt5-examples, 0, 0, 0644, -, \
+ /usr/lib/qt5/examples/canvas3d/threejs/oneqt/ios/OneQtIcon60x60@2x.png)
+ @$(call install_copy, qt5-examples, 0, 0, 0644, -, \
+ /usr/lib/qt5/examples/canvas3d/threejs/oneqt/ios/OneQtIcon72x72@2x~ipad.png)
+ @$(call install_copy, qt5-examples, 0, 0, 0644, -, \
+ /usr/lib/qt5/examples/canvas3d/threejs/oneqt/ios/OneQtIcon72x72~ipad.png)
+ @$(call install_copy, qt5-examples, 0, 0, 0644, -, \
+ /usr/lib/qt5/examples/canvas3d/threejs/oneqt/ios/OneQtIcon76x76@2x~ipad.png)
+ @$(call install_copy, qt5-examples, 0, 0, 0644, -, \
+ /usr/lib/qt5/examples/canvas3d/threejs/oneqt/ios/OneQtIcon76x76~ipad.png)
@$(call install_copy, qt5-examples, 0, 0, 0755, -, \
- /usr/lib/qt5/examples/canvas3d/textureandlight/textureandlight)
+ /usr/lib/qt5/examples/canvas3d/threejs/oneqt/oneqt)
endif
endif
ifneq ($(strip $(PTXCONF_QT5_MODULE_QTCANVAS3D)),)
-ifdef PTXCONF_QT5_EXAMPLES_CANVAS3D_CANVAS3D_THREEJS_PLANETS
+ifdef PTXCONF_QT5_EXAMPLES_CANVAS3D_THREEJS_PLANETS
+ @$(call install_copy, qt5-examples, 0, 0, 0644, -, \
+ /usr/lib/qt5/examples/canvas3d/threejs/planets/images/plutobump1k.jpg)
+ @$(call install_copy, qt5-examples, 0, 0, 0644, -, \
+ /usr/lib/qt5/examples/canvas3d/threejs/planets/images/plutomap1k.jpg)
+ @$(call install_copy, qt5-examples, 0, 0, 0644, -, \
+ /usr/lib/qt5/examples/canvas3d/threejs/planets/ios/AppIcon29x29.png)
+ @$(call install_copy, qt5-examples, 0, 0, 0644, -, \
+ /usr/lib/qt5/examples/canvas3d/threejs/planets/ios/AppIcon29x29@2x.png)
+ @$(call install_copy, qt5-examples, 0, 0, 0644, -, \
+ /usr/lib/qt5/examples/canvas3d/threejs/planets/ios/AppIcon29x29@2x~ipad.png)
@$(call install_copy, qt5-examples, 0, 0, 0644, -, \
- /usr/lib/qt5/examples/canvas3d/canvas3d/threejs/planets/images/plutobump1k.jpg)
+ /usr/lib/qt5/examples/canvas3d/threejs/planets/ios/AppIcon29x29~ipad.png)
@$(call install_copy, qt5-examples, 0, 0, 0644, -, \
- /usr/lib/qt5/examples/canvas3d/canvas3d/threejs/planets/images/plutomap1k.jpg)
+ /usr/lib/qt5/examples/canvas3d/threejs/planets/ios/AppIcon40x40@2x.png)
+ @$(call install_copy, qt5-examples, 0, 0, 0644, -, \
+ /usr/lib/qt5/examples/canvas3d/threejs/planets/ios/AppIcon40x40@2x~ipad.png)
+ @$(call install_copy, qt5-examples, 0, 0, 0644, -, \
+ /usr/lib/qt5/examples/canvas3d/threejs/planets/ios/AppIcon40x40~ipad.png)
+ @$(call install_copy, qt5-examples, 0, 0, 0644, -, \
+ /usr/lib/qt5/examples/canvas3d/threejs/planets/ios/AppIcon50x50@2x~ipad.png)
+ @$(call install_copy, qt5-examples, 0, 0, 0644, -, \
+ /usr/lib/qt5/examples/canvas3d/threejs/planets/ios/AppIcon50x50~ipad.png)
+ @$(call install_copy, qt5-examples, 0, 0, 0644, -, \
+ /usr/lib/qt5/examples/canvas3d/threejs/planets/ios/AppIcon57x57.png)
+ @$(call install_copy, qt5-examples, 0, 0, 0644, -, \
+ /usr/lib/qt5/examples/canvas3d/threejs/planets/ios/AppIcon57x57@2x.png)
+ @$(call install_copy, qt5-examples, 0, 0, 0644, -, \
+ /usr/lib/qt5/examples/canvas3d/threejs/planets/ios/AppIcon60x60@2x.png)
+ @$(call install_copy, qt5-examples, 0, 0, 0644, -, \
+ /usr/lib/qt5/examples/canvas3d/threejs/planets/ios/AppIcon72x72@2x~ipad.png)
+ @$(call install_copy, qt5-examples, 0, 0, 0644, -, \
+ /usr/lib/qt5/examples/canvas3d/threejs/planets/ios/AppIcon72x72~ipad.png)
+ @$(call install_copy, qt5-examples, 0, 0, 0644, -, \
+ /usr/lib/qt5/examples/canvas3d/threejs/planets/ios/AppIcon76x76@2x~ipad.png)
+ @$(call install_copy, qt5-examples, 0, 0, 0644, -, \
+ /usr/lib/qt5/examples/canvas3d/threejs/planets/ios/AppIcon76x76~ipad.png)
+ @$(call install_copy, qt5-examples, 0, 0, 0644, -, \
+ /usr/lib/qt5/examples/canvas3d/threejs/planets/ios/Info.plist)
+ @$(call install_copy, qt5-examples, 0, 0, 0755, -, \
+ /usr/lib/qt5/examples/canvas3d/threejs/planets/planets)
endif
endif
ifneq ($(strip $(PTXCONF_QT5_MODULE_QTBASE)),)
@@ -208,6 +294,12 @@ ifdef PTXCONF_QT5_EXAMPLES_CORELIB_THREADS_MANDELBROT
endif
endif
ifneq ($(strip $(PTXCONF_QT5_MODULE_QTBASE)),)
+ifdef PTXCONF_QT5_EXAMPLES_CORELIB_THREADS_QUEUEDCUSTOMTYPE
+ @$(call install_copy, qt5-examples, 0, 0, 0755, -, \
+ /usr/lib/qt5/examples/corelib/threads/queuedcustomtype/queuedcustomtype)
+endif
+endif
+ifneq ($(strip $(PTXCONF_QT5_MODULE_QTBASE)),)
ifdef PTXCONF_QT5_EXAMPLES_CORELIB_THREADS_SEMAPHORES
@$(call install_copy, qt5-examples, 0, 0, 0755, -, \
/usr/lib/qt5/examples/corelib/threads/semaphores/semaphores)
@@ -226,6 +318,18 @@ ifdef PTXCONF_QT5_EXAMPLES_CORELIB_TOOLS_CONTIGUOUSCACHE
endif
endif
ifneq ($(strip $(PTXCONF_QT5_MODULE_QTBASE)),)
+ifdef PTXCONF_QT5_EXAMPLES_CORELIB_TOOLS_CUSTOMTYPE
+ @$(call install_copy, qt5-examples, 0, 0, 0755, -, \
+ /usr/lib/qt5/examples/corelib/tools/customtype/customtype)
+endif
+endif
+ifneq ($(strip $(PTXCONF_QT5_MODULE_QTBASE)),)
+ifdef PTXCONF_QT5_EXAMPLES_CORELIB_TOOLS_CUSTOMTYPESENDING
+ @$(call install_copy, qt5-examples, 0, 0, 0755, -, \
+ /usr/lib/qt5/examples/corelib/tools/customtypesending/customtypesending)
+endif
+endif
+ifneq ($(strip $(PTXCONF_QT5_MODULE_QTBASE)),)
ifdef PTXCONF_QT5_EXAMPLES_DBUS_CHAT
@$(call install_copy, qt5-examples, 0, 0, 0755, -, \
/usr/lib/qt5/examples/dbus/chat/chat)
@@ -305,6 +409,50 @@ ifdef PTXCONF_QT5_EXAMPLES_DESIGNER_WORLDTIMECLOCKBUILDER
/usr/lib/qt5/examples/designer/worldtimeclockbuilder/worldtimeclockbuilder)
endif
endif
+ifneq ($(strip $(PTXCONF_QT5_MODULE_QTENGINIO)),)
+ifdef PTXCONF_QT5_EXAMPLES_ENGINIO_QUICK_IMAGE_GALLERY
+ @$(call install_copy, qt5-examples, 0, 0, 0755, -, \
+ /usr/lib/qt5/examples/enginio/quick/image-gallery/image-gallery)
+endif
+endif
+ifneq ($(strip $(PTXCONF_QT5_MODULE_QTENGINIO)),)
+ifdef PTXCONF_QT5_EXAMPLES_ENGINIO_QUICK_SOCIALTODOS
+ @$(call install_copy, qt5-examples, 0, 0, 0644, -, \
+ /usr/lib/qt5/examples/enginio/quick/socialtodos/backendconfig/sharedtodo.zip)
+ @$(call install_copy, qt5-examples, 0, 0, 0755, -, \
+ /usr/lib/qt5/examples/enginio/quick/socialtodos/socialtodos)
+endif
+endif
+ifneq ($(strip $(PTXCONF_QT5_MODULE_QTENGINIO)),)
+ifdef PTXCONF_QT5_EXAMPLES_ENGINIO_QUICK_TODOS
+ @$(call install_copy, qt5-examples, 0, 0, 0755, -, \
+ /usr/lib/qt5/examples/enginio/quick/todos/todos)
+endif
+endif
+ifneq ($(strip $(PTXCONF_QT5_MODULE_QTENGINIO)),)
+ifdef PTXCONF_QT5_EXAMPLES_ENGINIO_QUICK_USERS
+ @$(call install_copy, qt5-examples, 0, 0, 0755, -, \
+ /usr/lib/qt5/examples/enginio/quick/users/users)
+endif
+endif
+ifneq ($(strip $(PTXCONF_QT5_MODULE_QTENGINIO)),)
+ifdef PTXCONF_QT5_EXAMPLES_ENGINIO_WIDGETS_CLOUDADDRESSBOOK
+ @$(call install_copy, qt5-examples, 0, 0, 0755, -, \
+ /usr/lib/qt5/examples/enginio/widgets/cloudaddressbook/cloudaddressbook)
+endif
+endif
+ifneq ($(strip $(PTXCONF_QT5_MODULE_QTENGINIO)),)
+ifdef PTXCONF_QT5_EXAMPLES_ENGINIO_WIDGETS_IMAGE_GALLERY
+ @$(call install_copy, qt5-examples, 0, 0, 0755, -, \
+ /usr/lib/qt5/examples/enginio/widgets/image-gallery-cpp/image-gallery)
+endif
+endif
+ifneq ($(strip $(PTXCONF_QT5_MODULE_QTENGINIO)),)
+ifdef PTXCONF_QT5_EXAMPLES_ENGINIO_WIDGETS_TODOS
+ @$(call install_copy, qt5-examples, 0, 0, 0755, -, \
+ /usr/lib/qt5/examples/enginio/widgets/todos-cpp/todos)
+endif
+endif
ifneq ($(strip $(PTXCONF_QT5_MODULE_QTBASE)),)
ifdef PTXCONF_QT5_EXAMPLES_GUI_ANALOGCLOCK
@$(call install_copy, qt5-examples, 0, 0, 0755, -, \
@@ -451,12 +599,30 @@ ifneq ($(strip $(PTXCONF_QT5_MODULE_QTMULTIMEDIA)),)
ifdef PTXCONF_QT5_EXAMPLES_MULTIMEDIA_VIDEO_QMLVIDEO
@$(call install_copy, qt5-examples, 0, 0, 0755, -, \
/usr/lib/qt5/examples/multimedia/video/qmlvideo/qmlvideo)
+ @$(call install_copy, qt5-examples, 0, 0, 0644, -, \
+ /usr/lib/qt5/examples/multimedia/video/qmlvideo/qmlvideo.png)
+ @$(call install_copy, qt5-examples, 0, 0, 0644, -, \
+ /usr/lib/qt5/examples/multimedia/video/qmlvideo/qmlvideo.svg)
+endif
+endif
+ifneq ($(strip $(PTXCONF_QT5_MODULE_QTMULTIMEDIA)),)
+ifdef PTXCONF_QT5_EXAMPLES_MULTIMEDIA_VIDEO_QMLVIDEOFILTER_OPENCL
+ @$(call install_copy, qt5-examples, 0, 0, 0644, -, \
+ /usr/lib/qt5/examples/multimedia/video/qmlvideofilter_opencl/README)
endif
endif
ifneq ($(strip $(PTXCONF_QT5_MODULE_QTMULTIMEDIA)),)
ifdef PTXCONF_QT5_EXAMPLES_MULTIMEDIA_VIDEO_QMLVIDEOFX
+ @$(call install_copy, qt5-examples, 0, 0, 0644, -, \
+ /usr/lib/qt5/examples/multimedia/video/qmlvideofx/Info.plist)
+ @$(call install_copy, qt5-examples, 0, 0, 0644, -, \
+ /usr/lib/qt5/examples/multimedia/video/qmlvideofx/android/AndroidManifest.xml)
@$(call install_copy, qt5-examples, 0, 0, 0755, -, \
/usr/lib/qt5/examples/multimedia/video/qmlvideofx/qmlvideofx)
+ @$(call install_copy, qt5-examples, 0, 0, 0644, -, \
+ /usr/lib/qt5/examples/multimedia/video/qmlvideofx/qmlvideofx.png)
+ @$(call install_copy, qt5-examples, 0, 0, 0644, -, \
+ /usr/lib/qt5/examples/multimedia/video/qmlvideofx/qmlvideofx.svg)
endif
endif
ifneq ($(strip $(PTXCONF_QT5_MODULE_QTMULTIMEDIA)),)
@@ -616,6 +782,16 @@ ifdef PTXCONF_QT5_EXAMPLES_NFC_ANNOTATEDURL
endif
endif
ifneq ($(strip $(PTXCONF_QT5_MODULE_QTCONNECTIVITY)),)
+ifdef PTXCONF_QT5_EXAMPLES_NFC_QML_CORKBOARD
+ @$(call install_copy, qt5-examples, 0, 0, 0644, -, \
+ /usr/lib/qt5/examples/nfc/corkboard/android/AndroidManifest.xml)
+ @$(call install_copy, qt5-examples, 0, 0, 0644, -, \
+ /usr/lib/qt5/examples/nfc/corkboard/icon.png)
+ @$(call install_copy, qt5-examples, 0, 0, 0755, -, \
+ /usr/lib/qt5/examples/nfc/corkboard/qml_corkboard)
+endif
+endif
+ifneq ($(strip $(PTXCONF_QT5_MODULE_QTCONNECTIVITY)),)
ifdef PTXCONF_QT5_EXAMPLES_NFC_NDEFEDITOR
@$(call install_copy, qt5-examples, 0, 0, 0755, -, \
/usr/lib/qt5/examples/nfc/ndefeditor/ndefeditor)
@@ -634,6 +810,12 @@ ifdef PTXCONF_QT5_EXAMPLES_OPENGL_2DPAINTING
endif
endif
ifneq ($(strip $(PTXCONF_QT5_MODULE_QTBASE)),)
+ifdef PTXCONF_QT5_EXAMPLES_OPENGL_CONTEXTINFO
+ @$(call install_copy, qt5-examples, 0, 0, 0755, -, \
+ /usr/lib/qt5/examples/opengl/contextinfo/contextinfo)
+endif
+endif
+ifneq ($(strip $(PTXCONF_QT5_MODULE_QTBASE)),)
ifdef PTXCONF_QT5_EXAMPLES_OPENGL_CUBE
@$(call install_copy, qt5-examples, 0, 0, 0755, -, \
/usr/lib/qt5/examples/opengl/cube/cube)
@@ -688,12 +870,24 @@ ifdef PTXCONF_QT5_EXAMPLES_OPENGL_THREADEDQOPENGLWIDGET
endif
endif
ifneq ($(strip $(PTXCONF_QT5_MODULE_QTLOCATION)),)
+ifdef PTXCONF_QT5_EXAMPLES_POSITIONING_GEOFLICKR
+ @$(call install_copy, qt5-examples, 0, 0, 0755, -, \
+ /usr/lib/qt5/examples/positioning/geoflickr/geoflickr)
+endif
+endif
+ifneq ($(strip $(PTXCONF_QT5_MODULE_QTLOCATION)),)
ifdef PTXCONF_QT5_EXAMPLES_POSITIONING_LOGFILEPOSITIONSOURCE
@$(call install_copy, qt5-examples, 0, 0, 0755, -, \
/usr/lib/qt5/examples/positioning/logfilepositionsource/logfilepositionsource)
endif
endif
ifneq ($(strip $(PTXCONF_QT5_MODULE_QTLOCATION)),)
+ifdef PTXCONF_QT5_EXAMPLES_POSITIONING_SATELLITEINFO
+ @$(call install_copy, qt5-examples, 0, 0, 0755, -, \
+ /usr/lib/qt5/examples/positioning/satelliteinfo/satelliteinfo)
+endif
+endif
+ifneq ($(strip $(PTXCONF_QT5_MODULE_QTLOCATION)),)
ifdef PTXCONF_QT5_EXAMPLES_POSITIONING_WEATHERINFO
@$(call install_copy, qt5-examples, 0, 0, 0644, -, \
/usr/lib/qt5/examples/positioning/weatherinfo/icons/README.txt)
@@ -785,6 +979,46 @@ ifdef PTXCONF_QT5_EXAMPLES_QML_REFERENCEEXAMPLES_VALUESOURCE
/usr/lib/qt5/examples/qml/referenceexamples/valuesource/valuesource)
endif
endif
+ifneq ($(strip $(PTXCONF_QT5_MODULE_QTDECLARATIVE)),)
+ifdef PTXCONF_QT5_EXAMPLES_QML_TUTORIALS_EXTENDING_QML_CHAPTER1_BASICS
+ @$(call install_copy, qt5-examples, 0, 0, 0755, -, \
+ /usr/lib/qt5/examples/qml/tutorials/extending-qml/chapter1-basics/chapter1-basics)
+endif
+endif
+ifneq ($(strip $(PTXCONF_QT5_MODULE_QTDECLARATIVE)),)
+ifdef PTXCONF_QT5_EXAMPLES_QML_TUTORIALS_EXTENDING_QML_CHAPTER2_METHODS
+ @$(call install_copy, qt5-examples, 0, 0, 0755, -, \
+ /usr/lib/qt5/examples/qml/tutorials/extending-qml/chapter2-methods/chapter2-methods)
+endif
+endif
+ifneq ($(strip $(PTXCONF_QT5_MODULE_QTDECLARATIVE)),)
+ifdef PTXCONF_QT5_EXAMPLES_QML_TUTORIALS_EXTENDING_QML_CHAPTER3_BINDINGS
+ @$(call install_copy, qt5-examples, 0, 0, 0755, -, \
+ /usr/lib/qt5/examples/qml/tutorials/extending-qml/chapter3-bindings/chapter3-bindings)
+endif
+endif
+ifneq ($(strip $(PTXCONF_QT5_MODULE_QTDECLARATIVE)),)
+ifdef PTXCONF_QT5_EXAMPLES_QML_TUTORIALS_EXTENDING_QML_CHAPTER4_CUSTOMPROPERTYTYPES
+ @$(call install_copy, qt5-examples, 0, 0, 0755, -, \
+ /usr/lib/qt5/examples/qml/tutorials/extending-qml/chapter4-customPropertyTypes/chapter4-customPropertyTypes)
+endif
+endif
+ifneq ($(strip $(PTXCONF_QT5_MODULE_QTDECLARATIVE)),)
+ifdef PTXCONF_QT5_EXAMPLES_QML_TUTORIALS_EXTENDING_QML_CHAPTER5_LISTPROPERTIES
+ @$(call install_copy, qt5-examples, 0, 0, 0755, -, \
+ /usr/lib/qt5/examples/qml/tutorials/extending-qml/chapter5-listproperties/chapter5-listproperties)
+endif
+endif
+ifneq ($(strip $(PTXCONF_QT5_MODULE_QTDECLARATIVE)),)
+ifdef PTXCONF_QT5_EXAMPLES_QML_TUTORIALS_EXTENDING_QML_CHAPTER6_PLUGINS
+ @$(call install_copy, qt5-examples, 0, 0, 0755, -, \
+ /usr/lib/qt5/examples/qml/tutorials/extending-qml/chapter6-plugins/Charts/libchartsplugin.so)
+ @$(call install_copy, qt5-examples, 0, 0, 0644, -, \
+ /usr/lib/qt5/examples/qml/tutorials/extending-qml/chapter6-plugins/Charts/qmldir)
+ @$(call install_copy, qt5-examples, 0, 0, 0755, -, \
+ /usr/lib/qt5/examples/qml/tutorials/extending-qml/chapter6-plugins/chapter6-plugins)
+endif
+endif
ifneq ($(strip $(PTXCONF_QT5_MODULE_QTBASE)),)
ifdef PTXCONF_QT5_EXAMPLES_QPA_QRASTERWINDOW
@$(call install_copy, qt5-examples, 0, 0, 0755, -, \
@@ -979,6 +1213,14 @@ endif
endif
ifneq ($(strip $(PTXCONF_QT5_MODULE_QT3D)),)
ifdef PTXCONF_QT5_EXAMPLES_QT3D_PLANETS_QML
+ @$(call install_copy, qt5-examples, 0, 0, 0644, -, \
+ /usr/lib/qt5/examples/qt3d/planets-qml/android/AndroidManifest.xml)
+ @$(call install_copy, qt5-examples, 0, 0, 0644, -, \
+ /usr/lib/qt5/examples/qt3d/planets-qml/android/res/drawable-hdpi/icon.png)
+ @$(call install_copy, qt5-examples, 0, 0, 0644, -, \
+ /usr/lib/qt5/examples/qt3d/planets-qml/android/res/drawable-ldpi/icon.png)
+ @$(call install_copy, qt5-examples, 0, 0, 0644, -, \
+ /usr/lib/qt5/examples/qt3d/planets-qml/android/res/drawable-mdpi/icon.png)
@$(call install_copy, qt5-examples, 0, 0, 0755, -, \
/usr/lib/qt5/examples/qt3d/planets-qml/planets-qml)
endif
@@ -1139,24 +1381,6 @@ ifdef PTXCONF_QT5_EXAMPLES_QTESTLIB_TUTORIAL5
/usr/lib/qt5/examples/qtestlib/tutorial5/tutorial5)
endif
endif
-ifneq ($(strip $(PTXCONF_QT5_MODULE_QTQUICKCONTROLS2)),)
-ifdef PTXCONF_QT5_EXAMPLES_QTLABSCONTROLS_GALLERY
- @$(call install_copy, qt5-examples, 0, 0, 0755, -, \
- /usr/lib/qt5/examples/qtlabscontrols/gallery/gallery)
-endif
-endif
-ifneq ($(strip $(PTXCONF_QT5_MODULE_QTLOCATION)),)
-ifdef PTXCONF_QT5_EXAMPLES_QTPOSITIONING_SATELLITEINFO
- @$(call install_copy, qt5-examples, 0, 0, 0755, -, \
- /usr/lib/qt5/examples/qtpositioning/satelliteinfo/satelliteinfo)
-endif
-endif
-ifneq ($(strip $(PTXCONF_QT5_MODULE_QTSENSORS)),)
-ifdef PTXCONF_QT5_EXAMPLES_QTSENSORS_SHAKEIT
- @$(call install_copy, qt5-examples, 0, 0, 0755, -, \
- /usr/lib/qt5/examples/qtsensors/shakeit/shakeit)
-endif
-endif
ifneq ($(strip $(PTXCONF_QT5_MODULE_QTDECLARATIVE)),)
ifdef PTXCONF_QT5_EXAMPLES_QUICK_ANIMATION
@$(call install_copy, qt5-examples, 0, 0, 0755, -, \
@@ -1242,6 +1466,12 @@ ifdef PTXCONF_QT5_EXAMPLES_QUICK_TEXT
endif
endif
ifneq ($(strip $(PTXCONF_QT5_MODULE_QTDECLARATIVE)),)
+ifdef PTXCONF_QT5_EXAMPLES_QUICK_TEXTUREPROVIDER
+ @$(call install_copy, qt5-examples, 0, 0, 0755, -, \
+ /usr/lib/qt5/examples/quick/textureprovider/textureprovider)
+endif
+endif
+ifneq ($(strip $(PTXCONF_QT5_MODULE_QTDECLARATIVE)),)
ifdef PTXCONF_QT5_EXAMPLES_QUICK_THREADING
@$(call install_copy, qt5-examples, 0, 0, 0755, -, \
/usr/lib/qt5/examples/quick/threading/threading)
@@ -1261,6 +1491,14 @@ endif
endif
ifneq ($(strip $(PTXCONF_QT5_MODULE_QTDECLARATIVE)),)
ifdef PTXCONF_QT5_EXAMPLES_QUICK_WINDOW
+ @$(call install_copy, qt5-examples, 0, 0, 0644, -, \
+ /usr/lib/qt5/examples/quick/window/resources/icon.icns)
+ @$(call install_copy, qt5-examples, 0, 0, 0644, -, \
+ /usr/lib/qt5/examples/quick/window/resources/icon.ico)
+ @$(call install_copy, qt5-examples, 0, 0, 0644, -, \
+ /usr/lib/qt5/examples/quick/window/resources/icon.svg)
+ @$(call install_copy, qt5-examples, 0, 0, 0644, -, \
+ /usr/lib/qt5/examples/quick/window/resources/icon64.png)
@$(call install_copy, qt5-examples, 0, 0, 0755, -, \
/usr/lib/qt5/examples/quick/window/window)
endif
@@ -1380,12 +1618,6 @@ ifdef PTXCONF_QT5_EXAMPLES_QUICK_DEMOS_TWEETSEARCH
endif
endif
ifneq ($(strip $(PTXCONF_QT5_MODULE_QTDECLARATIVE)),)
-ifdef PTXCONF_QT5_EXAMPLES_QUICK_DIALOGS_SYSTEMDIALOGS
- @$(call install_copy, qt5-examples, 0, 0, 0755, -, \
- /usr/lib/qt5/examples/quick/dialogs/systemdialogs/systemdialogs)
-endif
-endif
-ifneq ($(strip $(PTXCONF_QT5_MODULE_QTDECLARATIVE)),)
ifdef PTXCONF_QT5_EXAMPLES_QUICK_LOCALSTORAGE_LOCALSTORAGE
@$(call install_copy, qt5-examples, 0, 0, 0755, -, \
/usr/lib/qt5/examples/quick/localstorage/localstorage/localstorage)
@@ -1446,12 +1678,30 @@ ifdef PTXCONF_QT5_EXAMPLES_QUICK_PARTICLES_SYSTEM
endif
endif
ifneq ($(strip $(PTXCONF_QT5_MODULE_QTDECLARATIVE)),)
+ifdef PTXCONF_QT5_EXAMPLES_QUICK_QUICKWIDGETS_QQUICKVIEWCOMPARISON
+ @$(call install_copy, qt5-examples, 0, 0, 0755, -, \
+ /usr/lib/qt5/examples/quick/quickwidgets/qquickviewcomparison/qquickviewcomparison)
+endif
+endif
+ifneq ($(strip $(PTXCONF_QT5_MODULE_QTDECLARATIVE)),)
+ifdef PTXCONF_QT5_EXAMPLES_QUICK_QUICKWIDGETS_QUICKWIDGET
+ @$(call install_copy, qt5-examples, 0, 0, 0755, -, \
+ /usr/lib/qt5/examples/quick/quickwidgets/quickwidget/quickwidget)
+endif
+endif
+ifneq ($(strip $(PTXCONF_QT5_MODULE_QTDECLARATIVE)),)
ifdef PTXCONF_QT5_EXAMPLES_QUICK_SCENEGRAPH_CUSTOMGEOMETRY
@$(call install_copy, qt5-examples, 0, 0, 0755, -, \
/usr/lib/qt5/examples/quick/scenegraph/customgeometry/customgeometry)
endif
endif
ifneq ($(strip $(PTXCONF_QT5_MODULE_QTDECLARATIVE)),)
+ifdef PTXCONF_QT5_EXAMPLES_QUICK_SCENEGRAPH_GRAPH
+ @$(call install_copy, qt5-examples, 0, 0, 0755, -, \
+ /usr/lib/qt5/examples/quick/scenegraph/graph/graph)
+endif
+endif
+ifneq ($(strip $(PTXCONF_QT5_MODULE_QTDECLARATIVE)),)
ifdef PTXCONF_QT5_EXAMPLES_QUICK_SCENEGRAPH_OPENGLUNDERQML
@$(call install_copy, qt5-examples, 0, 0, 0755, -, \
/usr/lib/qt5/examples/quick/scenegraph/openglunderqml/openglunderqml)
@@ -1493,6 +1743,96 @@ ifdef PTXCONF_QT5_EXAMPLES_QUICK_SCENEGRAPH_TWOTEXTUREPROVIDERS
/usr/lib/qt5/examples/quick/scenegraph/twotextureproviders/twotextureproviders)
endif
endif
+ifneq ($(strip $(PTXCONF_QT5_MODULE_QTDECLARATIVE)),)
+ifdef PTXCONF_QT5_EXAMPLES_QUICKCONTROLS_CONTROLS_BASICLAYOUTS
+ @$(call install_copy, qt5-examples, 0, 0, 0755, -, \
+ /usr/lib/qt5/examples/quickcontrols/controls/basiclayouts/basiclayouts)
+endif
+endif
+ifneq ($(strip $(PTXCONF_QT5_MODULE_QTDECLARATIVE)),)
+ifdef PTXCONF_QT5_EXAMPLES_QUICKCONTROLS_CONTROLS_CALENDAR
+ @$(call install_copy, qt5-examples, 0, 0, 0755, -, \
+ /usr/lib/qt5/examples/quickcontrols/controls/calendar/calendar)
+endif
+endif
+ifneq ($(strip $(PTXCONF_QT5_MODULE_QTDECLARATIVE)),)
+ifdef PTXCONF_QT5_EXAMPLES_QUICKCONTROLS_CONTROLS_FILESYSTEMBROWSER
+ @$(call install_copy, qt5-examples, 0, 0, 0755, -, \
+ /usr/lib/qt5/examples/quickcontrols/controls/filesystembrowser/filesystembrowser)
+endif
+endif
+ifneq ($(strip $(PTXCONF_QT5_MODULE_QTDECLARATIVE)),)
+ifdef PTXCONF_QT5_EXAMPLES_QUICKCONTROLS_CONTROLS_GALLERY
+ @$(call install_copy, qt5-examples, 0, 0, 0755, -, \
+ /usr/lib/qt5/examples/quickcontrols/controls/gallery/gallery)
+endif
+endif
+ifneq ($(strip $(PTXCONF_QT5_MODULE_QTDECLARATIVE)),)
+ifdef PTXCONF_QT5_EXAMPLES_QUICKCONTROLS_CONTROLS_STYLES
+ @$(call install_copy, qt5-examples, 0, 0, 0755, -, \
+ /usr/lib/qt5/examples/quickcontrols/controls/styles/styles)
+endif
+endif
+ifneq ($(strip $(PTXCONF_QT5_MODULE_QTDECLARATIVE)),)
+ifdef PTXCONF_QT5_EXAMPLES_QUICKCONTROLS_CONTROLS_TABLEVIEW
+ @$(call install_copy, qt5-examples, 0, 0, 0755, -, \
+ /usr/lib/qt5/examples/quickcontrols/controls/tableview/tableview)
+endif
+endif
+ifneq ($(strip $(PTXCONF_QT5_MODULE_QTDECLARATIVE)),)
+ifdef PTXCONF_QT5_EXAMPLES_QUICKCONTROLS_CONTROLS_TEXTEDITOR
+ @$(call install_copy, qt5-examples, 0, 0, 0755, -, \
+ /usr/lib/qt5/examples/quickcontrols/controls/texteditor/texteditor)
+endif
+endif
+ifneq ($(strip $(PTXCONF_QT5_MODULE_QTDECLARATIVE)),)
+ifdef PTXCONF_QT5_EXAMPLES_QUICKCONTROLS_CONTROLS_TOUCH
+ @$(call install_copy, qt5-examples, 0, 0, 0644, -, \
+ /usr/lib/qt5/examples/quickcontrols/controls/touch/images/NOTICE.txt)
+ @$(call install_copy, qt5-examples, 0, 0, 0755, -, \
+ /usr/lib/qt5/examples/quickcontrols/controls/touch/touch)
+endif
+endif
+ifneq ($(strip $(PTXCONF_QT5_MODULE_QTDECLARATIVE)),)
+ifdef PTXCONF_QT5_EXAMPLES_QUICKCONTROLS_CONTROLS_UIFORMS
+ @$(call install_copy, qt5-examples, 0, 0, 0755, -, \
+ /usr/lib/qt5/examples/quickcontrols/controls/uiforms/uiforms)
+endif
+endif
+ifneq ($(strip $(PTXCONF_QT5_MODULE_QTDECLARATIVE)),)
+ifdef PTXCONF_QT5_EXAMPLES_QUICKCONTROLS_DIALOGS_SYSTEMDIALOGS
+ @$(call install_copy, qt5-examples, 0, 0, 0755, -, \
+ /usr/lib/qt5/examples/quickcontrols/dialogs/systemdialogs/systemdialogs)
+endif
+endif
+ifneq ($(strip $(PTXCONF_QT5_MODULE_QTDECLARATIVE)),)
+ifdef PTXCONF_QT5_EXAMPLES_QUICKCONTROLS_EXTRAS_DASHBOARD
+ @$(call install_copy, qt5-examples, 0, 0, 0755, -, \
+ /usr/lib/qt5/examples/quickcontrols/extras/dashboard/dashboard)
+ @$(call install_copy, qt5-examples, 0, 0, 0644, -, \
+ /usr/lib/qt5/examples/quickcontrols/extras/dashboard/fonts/LICENSE)
+endif
+endif
+ifneq ($(strip $(PTXCONF_QT5_MODULE_QTDECLARATIVE)),)
+ifdef PTXCONF_QT5_EXAMPLES_QUICKCONTROLS_EXTRAS_FLAT
+ @$(call install_copy, qt5-examples, 0, 0, 0755, -, \
+ /usr/lib/qt5/examples/quickcontrols/extras/flat/flat)
+endif
+endif
+ifneq ($(strip $(PTXCONF_QT5_MODULE_QTDECLARATIVE)),)
+ifdef PTXCONF_QT5_EXAMPLES_QUICKCONTROLS_EXTRAS_GALLERY
+ @$(call install_copy, qt5-examples, 0, 0, 0644, -, \
+ /usr/lib/qt5/examples/quickcontrols/extras/gallery/fonts/LICENSE.txt)
+ @$(call install_copy, qt5-examples, 0, 0, 0755, -, \
+ /usr/lib/qt5/examples/quickcontrols/extras/gallery/gallery)
+endif
+endif
+ifneq ($(strip $(PTXCONF_QT5_MODULE_QTDECLARATIVE)),)
+ifdef PTXCONF_QT5_EXAMPLES_QUICKCONTROLS2_GALLERY
+ @$(call install_copy, qt5-examples, 0, 0, 0755, -, \
+ /usr/lib/qt5/examples/quickcontrols2/gallery/gallery)
+endif
+endif
ifneq ($(strip $(PTXCONF_QT5_MODULE_QTSCRIPT)),)
ifdef PTXCONF_QT5_EXAMPLES_SCRIPT_CALCULATOR
@$(call install_copy, qt5-examples, 0, 0, 0755, -, \
@@ -1589,12 +1929,44 @@ endif
endif
ifneq ($(strip $(PTXCONF_QT5_MODULE_QTSENSORS)),)
ifdef PTXCONF_QT5_EXAMPLES_SENSORS_ACCELBUBBLE
+ @$(call install_copy, qt5-examples, 0, 0, 0644, -, \
+ /usr/lib/qt5/examples/sensors/accelbubble/Info.plist)
@$(call install_copy, qt5-examples, 0, 0, 0755, -, \
/usr/lib/qt5/examples/sensors/accelbubble/accelbubble)
+ @$(call install_copy, qt5-examples, 0, 0, 0644, -, \
+ /usr/lib/qt5/examples/sensors/accelbubble/android/AndroidManifest.xml)
+endif
+endif
+ifneq ($(strip $(PTXCONF_QT5_MODULE_QTSENSORS)),)
+ifdef PTXCONF_QT5_EXAMPLES_SENSORS_GRUE_APP
+ @$(call install_copy, qt5-examples, 0, 0, 0755, -, \
+ /usr/lib/qt5/examples/sensors/grue/Grue/libdeclarative_grue.so)
+ @$(call install_copy, qt5-examples, 0, 0, 0644, -, \
+ /usr/lib/qt5/examples/sensors/grue/Grue/qmldir)
+ @$(call install_copy, qt5-examples, 0, 0, 0755, -, \
+ /usr/lib/qt5/examples/sensors/grue/detect_grue)
+ @$(call install_copy, qt5-examples, 0, 0, 0644, -, \
+ /usr/lib/qt5/examples/sensors/grue/grue.xcf)
+ @$(call install_copy, qt5-examples, 0, 0, 0755, -, \
+ /usr/lib/qt5/examples/sensors/grue/grue_app)
+ @$(call install_copy, qt5-examples, 0, 0, 0644, -, \
+ /usr/lib/qt5/examples/sensors/grue/icon.xcf)
+ @$(call install_copy, qt5-examples, 0, 0, 0644, -, \
+ /usr/lib/qt5/examples/sensors/grue/import/import.json)
+ @$(call install_copy, qt5-examples, 0, 0, 0644, -, \
+ /usr/lib/qt5/examples/sensors/grue/libgruesensor.prl)
+ @$(call install_copy, qt5-examples, 0, 0, 0755, -, \
+ /usr/lib/qt5/examples/sensors/grue/libgruesensor.so.1.0.0)
+ @$(call install_copy, qt5-examples, 0, 0, 0644, -, \
+ /usr/lib/qt5/examples/sensors/grue/plugin/plugin.json)
+ @$(call install_copy, qt5-examples, 0, 0, 0755, -, \
+ /usr/lib/qt5/examples/sensors/grue/sensors/libqtsensors_grue.so)
endif
endif
ifneq ($(strip $(PTXCONF_QT5_MODULE_QTSENSORS)),)
ifdef PTXCONF_QT5_EXAMPLES_SENSORS_MAZE
+ @$(call install_copy, qt5-examples, 0, 0, 0644, -, \
+ /usr/lib/qt5/examples/sensors/maze/android/AndroidManifest.xml)
@$(call install_copy, qt5-examples, 0, 0, 0755, -, \
/usr/lib/qt5/examples/sensors/maze/maze)
endif
@@ -1617,10 +1989,114 @@ ifdef PTXCONF_QT5_EXAMPLES_SENSORS_SENSOR_EXPLORER
/usr/lib/qt5/examples/sensors/sensor_explorer/Explorer/libdeclarative_explorer.so)
@$(call install_copy, qt5-examples, 0, 0, 0644, -, \
/usr/lib/qt5/examples/sensors/sensor_explorer/Explorer/qmldir)
+ @$(call install_copy, qt5-examples, 0, 0, 0644, -, \
+ /usr/lib/qt5/examples/sensors/sensor_explorer/import/import.json)
@$(call install_copy, qt5-examples, 0, 0, 0755, -, \
/usr/lib/qt5/examples/sensors/sensor_explorer/sensor_explorer)
endif
endif
+ifneq ($(strip $(PTXCONF_QT5_MODULE_QTSENSORS)),)
+ifdef PTXCONF_QT5_EXAMPLES_SENSORS_GESTURE
+ @$(call install_copy, qt5-examples, 0, 0, 0755, -, \
+ /usr/lib/qt5/examples/sensors/sensorgestures/gesture)
+endif
+endif
+ifneq ($(strip $(PTXCONF_QT5_MODULE_QTSENSORS)),)
+ifdef PTXCONF_QT5_EXAMPLES_SENSORS_SHAKEIT
+ @$(call install_copy, qt5-examples, 0, 0, 0755, -, \
+ /usr/lib/qt5/examples/sensors/shakeit/shakeit)
+endif
+endif
+ifneq ($(strip $(PTXCONF_QT5_MODULE_)),)
+ifdef PTXCONF_QT5_EXAMPLES_SERIALBUS_CAN
+ @$(call install_copy, qt5-examples, 0, 0, 0755, -, \
+ /usr/lib/qt5/examples/serialbus/can/can)
+endif
+endif
+ifneq ($(strip $(PTXCONF_QT5_MODULE_)),)
+ifdef PTXCONF_QT5_EXAMPLES_SERIALBUS_MODBUS_ADUEDITOR
+ @$(call install_copy, qt5-examples, 0, 0, 0755, -, \
+ /usr/lib/qt5/examples/serialbus/modbus/adueditor/adueditor)
+endif
+endif
+ifneq ($(strip $(PTXCONF_QT5_MODULE_)),)
+ifdef PTXCONF_QT5_EXAMPLES_SERIALBUS_MODBUS_MODBUSMASTER
+ @$(call install_copy, qt5-examples, 0, 0, 0755, -, \
+ /usr/lib/qt5/examples/serialbus/modbus/master/modbusmaster)
+endif
+endif
+ifneq ($(strip $(PTXCONF_QT5_MODULE_)),)
+ifdef PTXCONF_QT5_EXAMPLES_SERIALBUS_MODBUS_MODBUSSLAVE
+ @$(call install_copy, qt5-examples, 0, 0, 0755, -, \
+ /usr/lib/qt5/examples/serialbus/modbus/slave/modbusslave)
+endif
+endif
+ifneq ($(strip $(PTXCONF_QT5_MODULE_QTSERIALPORT)),)
+ifdef PTXCONF_QT5_EXAMPLES_SERIALPORT_BLOCKINGMASTER
+ @$(call install_copy, qt5-examples, 0, 0, 0755, -, \
+ /usr/lib/qt5/examples/serialport/blockingmaster/blockingmaster)
+endif
+endif
+ifneq ($(strip $(PTXCONF_QT5_MODULE_QTSERIALPORT)),)
+ifdef PTXCONF_QT5_EXAMPLES_SERIALPORT_BLOCKINGSLAVE
+ @$(call install_copy, qt5-examples, 0, 0, 0755, -, \
+ /usr/lib/qt5/examples/serialport/blockingslave/blockingslave)
+endif
+endif
+ifneq ($(strip $(PTXCONF_QT5_MODULE_QTSERIALPORT)),)
+ifdef PTXCONF_QT5_EXAMPLES_SERIALPORT_CENUMERATOR
+ @$(call install_copy, qt5-examples, 0, 0, 0755, -, \
+ /usr/lib/qt5/examples/serialport/cenumerator/cenumerator)
+endif
+endif
+ifneq ($(strip $(PTXCONF_QT5_MODULE_QTSERIALPORT)),)
+ifdef PTXCONF_QT5_EXAMPLES_SERIALPORT_CREADERASYNC
+ @$(call install_copy, qt5-examples, 0, 0, 0755, -, \
+ /usr/lib/qt5/examples/serialport/creaderasync/creaderasync)
+endif
+endif
+ifneq ($(strip $(PTXCONF_QT5_MODULE_QTSERIALPORT)),)
+ifdef PTXCONF_QT5_EXAMPLES_SERIALPORT_CREADERSYNC
+ @$(call install_copy, qt5-examples, 0, 0, 0755, -, \
+ /usr/lib/qt5/examples/serialport/creadersync/creadersync)
+endif
+endif
+ifneq ($(strip $(PTXCONF_QT5_MODULE_QTSERIALPORT)),)
+ifdef PTXCONF_QT5_EXAMPLES_SERIALPORT_CWRITERASYNC
+ @$(call install_copy, qt5-examples, 0, 0, 0755, -, \
+ /usr/lib/qt5/examples/serialport/cwriterasync/cwriterasync)
+endif
+endif
+ifneq ($(strip $(PTXCONF_QT5_MODULE_QTSERIALPORT)),)
+ifdef PTXCONF_QT5_EXAMPLES_SERIALPORT_CWRITERSYNC
+ @$(call install_copy, qt5-examples, 0, 0, 0755, -, \
+ /usr/lib/qt5/examples/serialport/cwritersync/cwritersync)
+endif
+endif
+ifneq ($(strip $(PTXCONF_QT5_MODULE_QTSERIALPORT)),)
+ifdef PTXCONF_QT5_EXAMPLES_SERIALPORT_ENUMERATOR
+ @$(call install_copy, qt5-examples, 0, 0, 0755, -, \
+ /usr/lib/qt5/examples/serialport/enumerator/enumerator)
+endif
+endif
+ifneq ($(strip $(PTXCONF_QT5_MODULE_QTSERIALPORT)),)
+ifdef PTXCONF_QT5_EXAMPLES_SERIALPORT_MASTER
+ @$(call install_copy, qt5-examples, 0, 0, 0755, -, \
+ /usr/lib/qt5/examples/serialport/master/master)
+endif
+endif
+ifneq ($(strip $(PTXCONF_QT5_MODULE_QTSERIALPORT)),)
+ifdef PTXCONF_QT5_EXAMPLES_SERIALPORT_SLAVE
+ @$(call install_copy, qt5-examples, 0, 0, 0755, -, \
+ /usr/lib/qt5/examples/serialport/slave/slave)
+endif
+endif
+ifneq ($(strip $(PTXCONF_QT5_MODULE_QTSERIALPORT)),)
+ifdef PTXCONF_QT5_EXAMPLES_SERIALPORT_TERMINAL
+ @$(call install_copy, qt5-examples, 0, 0, 0755, -, \
+ /usr/lib/qt5/examples/serialport/terminal/terminal)
+endif
+endif
ifneq ($(strip $(PTXCONF_QT5_MODULE_QTBASE)),)
ifdef PTXCONF_QT5_EXAMPLES_SQL_BOOKS
@$(call install_copy, qt5-examples, 0, 0, 0755, -, \
@@ -1783,6 +2259,28 @@ ifdef PTXCONF_QT5_EXAMPLES_UITOOLS_TEXTFINDER
/usr/lib/qt5/examples/uitools/textfinder/textfinder)
endif
endif
+ifneq ($(strip $(PTXCONF_QT5_MODULE_QTWEBCHANNEL)),)
+ifdef PTXCONF_QT5_EXAMPLES_WEBCHANNEL_CHATSERVER
+ @$(call install_copy, qt5-examples, 0, 0, 0755, -, \
+ /usr/lib/qt5/examples/webchannel/chatserver-cpp/chatserver)
+endif
+endif
+ifneq ($(strip $(PTXCONF_QT5_MODULE_QTWEBCHANNEL)),)
+ifdef PTXCONF_QT5_EXAMPLES_WEBCHANNEL_STANDALONE
+ @$(call install_copy, qt5-examples, 0, 0, 0644, -, \
+ /usr/lib/qt5/examples/webchannel/standalone/index.html)
+ @$(call install_copy, qt5-examples, 0, 0, 0644, -, \
+ /usr/lib/qt5/examples/webchannel/standalone/qwebchannel.js)
+ @$(call install_copy, qt5-examples, 0, 0, 0755, -, \
+ /usr/lib/qt5/examples/webchannel/standalone/standalone)
+endif
+endif
+ifneq ($(strip $(PTXCONF_QT5_MODULE_QTWEBENGINE)),)
+ifdef PTXCONF_QT5_EXAMPLES_WEBENGINE_MINIMAL
+ @$(call install_copy, qt5-examples, 0, 0, 0755, -, \
+ /usr/lib/qt5/examples/webengine/minimal/minimal)
+endif
+endif
ifneq ($(strip $(PTXCONF_QT5_MODULE_QTWEBENGINE)),)
ifdef PTXCONF_QT5_EXAMPLES_WEBENGINE_QUICKNANOBROWSER
@$(call install_copy, qt5-examples, 0, 0, 0755, -, \
@@ -1796,6 +2294,12 @@ ifdef PTXCONF_QT5_EXAMPLES_WEBENGINEWIDGETS_CONTENTMANIPULATION
endif
endif
ifneq ($(strip $(PTXCONF_QT5_MODULE_QTWEBENGINE)),)
+ifdef PTXCONF_QT5_EXAMPLES_WEBENGINEWIDGETS_COOKIEBROWSER
+ @$(call install_copy, qt5-examples, 0, 0, 0755, -, \
+ /usr/lib/qt5/examples/webenginewidgets/cookiebrowser/cookiebrowser)
+endif
+endif
+ifneq ($(strip $(PTXCONF_QT5_MODULE_QTWEBENGINE)),)
ifdef PTXCONF_QT5_EXAMPLES_WEBENGINEWIDGETS_DEMOBROWSER
@$(call install_copy, qt5-examples, 0, 0, 0644, -, \
/usr/lib/qt5/examples/webenginewidgets/demobrowser/Info_mac.plist)
@@ -1809,10 +2313,72 @@ endif
endif
ifneq ($(strip $(PTXCONF_QT5_MODULE_QTWEBENGINE)),)
ifdef PTXCONF_QT5_EXAMPLES_WEBENGINEWIDGETS_MARKDOWNEDITOR
+ @$(call install_copy, qt5-examples, 0, 0, 0644, -, \
+ /usr/lib/qt5/examples/webenginewidgets/markdowneditor/3RDPARTY.md)
@$(call install_copy, qt5-examples, 0, 0, 0755, -, \
/usr/lib/qt5/examples/webenginewidgets/markdowneditor/markdowneditor)
endif
endif
+ifneq ($(strip $(PTXCONF_QT5_MODULE_QTWEBENGINE)),)
+ifdef PTXCONF_QT5_EXAMPLES_WEBENGINEWIDGETS_MINIMAL
+ @$(call install_copy, qt5-examples, 0, 0, 0755, -, \
+ /usr/lib/qt5/examples/webenginewidgets/minimal/minimal)
+endif
+endif
+ifneq ($(strip $(PTXCONF_QT5_MODULE_QTWEBENGINE)),)
+ifdef PTXCONF_QT5_EXAMPLES_WEBENGINEWIDGETS_SIMPLEBROWSER
+ @$(call install_copy, qt5-examples, 0, 0, 0755, -, \
+ /usr/lib/qt5/examples/webenginewidgets/simplebrowser/simplebrowser)
+endif
+endif
+ifneq ($(strip $(PTXCONF_QT5_MODULE_QTWEBSOCKETS)),)
+ifdef PTXCONF_QT5_EXAMPLES_WEBSOCKETS_ECHOCLIENT
+ @$(call install_copy, qt5-examples, 0, 0, 0755, -, \
+ /usr/lib/qt5/examples/websockets/echoclient/echoclient)
+endif
+endif
+ifneq ($(strip $(PTXCONF_QT5_MODULE_QTWEBSOCKETS)),)
+ifdef PTXCONF_QT5_EXAMPLES_WEBSOCKETS_ECHOSERVER
+ @$(call install_copy, qt5-examples, 0, 0, 0644, -, \
+ /usr/lib/qt5/examples/websockets/echoserver/echoclient.html)
+ @$(call install_copy, qt5-examples, 0, 0, 0755, -, \
+ /usr/lib/qt5/examples/websockets/echoserver/echoserver)
+endif
+endif
+ifneq ($(strip $(PTXCONF_QT5_MODULE_QTWEBSOCKETS)),)
+ifdef PTXCONF_QT5_EXAMPLES_WEBSOCKETS_QMLWEBSOCKETCLIENT
+ @$(call install_copy, qt5-examples, 0, 0, 0755, -, \
+ /usr/lib/qt5/examples/websockets/qmlwebsocketclient/qmlwebsocketclient)
+endif
+endif
+ifneq ($(strip $(PTXCONF_QT5_MODULE_QTWEBSOCKETS)),)
+ifdef PTXCONF_QT5_EXAMPLES_WEBSOCKETS_QMLWEBSOCKETSERVER
+ @$(call install_copy, qt5-examples, 0, 0, 0755, -, \
+ /usr/lib/qt5/examples/websockets/qmlwebsocketserver/qmlwebsocketserver)
+endif
+endif
+ifneq ($(strip $(PTXCONF_QT5_MODULE_QTWEBSOCKETS)),)
+ifdef PTXCONF_QT5_EXAMPLES_WEBSOCKETS_CHATSERVER
+ @$(call install_copy, qt5-examples, 0, 0, 0644, -, \
+ /usr/lib/qt5/examples/websockets/simplechat/chatclient.html)
+ @$(call install_copy, qt5-examples, 0, 0, 0755, -, \
+ /usr/lib/qt5/examples/websockets/simplechat/chatserver)
+endif
+endif
+ifneq ($(strip $(PTXCONF_QT5_MODULE_QTWEBSOCKETS)),)
+ifdef PTXCONF_QT5_EXAMPLES_WEBSOCKETS_SSLECHOCLIENT
+ @$(call install_copy, qt5-examples, 0, 0, 0755, -, \
+ /usr/lib/qt5/examples/websockets/sslechoclient/sslechoclient)
+endif
+endif
+ifneq ($(strip $(PTXCONF_QT5_MODULE_QTWEBSOCKETS)),)
+ifdef PTXCONF_QT5_EXAMPLES_WEBSOCKETS_SSLECHOSERVER
+ @$(call install_copy, qt5-examples, 0, 0, 0644, -, \
+ /usr/lib/qt5/examples/websockets/sslechoserver/sslechoclient.html)
+ @$(call install_copy, qt5-examples, 0, 0, 0755, -, \
+ /usr/lib/qt5/examples/websockets/sslechoserver/sslechoserver)
+endif
+endif
ifneq ($(strip $(PTXCONF_QT5_MODULE_QTWEBVIEW)),)
ifdef PTXCONF_QT5_EXAMPLES_WEBVIEW_MINIBROWSER
@$(call install_copy, qt5-examples, 0, 0, 0755, -, \
@@ -2196,6 +2762,12 @@ ifdef PTXCONF_QT5_EXAMPLES_WIDGETS_ITEMVIEWS_STARDELEGATE
endif
endif
ifneq ($(strip $(PTXCONF_QT5_MODULE_QTBASE)),)
+ifdef PTXCONF_QT5_EXAMPLES_WIDGETS_ITEMVIEWS_STORAGEVIEW
+ @$(call install_copy, qt5-examples, 0, 0, 0755, -, \
+ /usr/lib/qt5/examples/widgets/itemviews/storageview/storageview)
+endif
+endif
+ifneq ($(strip $(PTXCONF_QT5_MODULE_QTBASE)),)
ifdef PTXCONF_QT5_EXAMPLES_WIDGETS_LAYOUTS_BASICLAYOUTS
@$(call install_copy, qt5-examples, 0, 0, 0755, -, \
/usr/lib/qt5/examples/widgets/layouts/basiclayouts/basiclayouts)