Add support for QtHttpServer

Task-number: QTBUG-103254
Change-Id: I54e1b0d8d6f6c0dca1bebd220a577824f4dc8b63
Reviewed-by: Mikko Gronoff <mikko.gronoff@qt.io>
This commit is contained in:
Samuli Piippo 2022-04-27 11:13:01 +00:00
parent 7b0817669a
commit 94e666417b
4 changed files with 12 additions and 0 deletions

View File

@ -62,6 +62,7 @@ PACKAGECONFIG:append:pn-qtconnectivity = " examples"
PACKAGECONFIG:append:pn-qtdatavis3d = " examples"
PACKAGECONFIG:append:pn-qtdeclarative = " examples"
PACKAGECONFIG:append:pn-qtdeviceutilities = " examples"
PACKAGECONFIG:append:pn-qthttpserver = " examples"
PACKAGECONFIG:append:pn-qtimageformats = " examples"
PACKAGECONFIG:append:pn-qtinterfaceframework = " examples"
PACKAGECONFIG:append:pn-qtlanguageserver = " examples"

View File

@ -17,6 +17,7 @@ RDEPENDS:${PN} += " \
${@bb.utils.contains('DISTRO_FEATURES', 'bluetooth', 'qtconnectivity-tools', '', d)} \
${@bb.utils.contains('DISTRO_FEATURES', 'opengl', 'qtdatavis3d', '', d)} \
qtdeviceutilities \
qthttpserver \
qtimageformats \
${@bb.utils.contains('BBFILE_COLLECTIONS', 'meta-python', 'qtinterfaceframework', '', d)} \
qtlottie \

View File

@ -28,6 +28,7 @@ SRCREV_qtconnectivity = "22cafede461aa8548170bcb3e656c2dfab02fad0"
SRCREV_qtdatavis3d = "3f6659726bb1a659a50fdd50b76b6a9f105c90a3"
SRCREV_qtdeclarative = "ffb05a6c8e27b22561af7642a9bdce1e3a033746"
SRCREV_qtdeviceutilities = "d62af1376cc612f386b7e8924724b8ce6f99673d"
SRCREV_qthttpserver = "d8feb769c7713e91cb534f2975d8eaa05b599578"
SRCREV_qtimageformats = "55c3b8d01f69413bd2d28d97e9015d2d69f39ae3"
SRCREV_qtinterfaceframework = "2d79ea6850e1f02774e378af124ce0fc320f32ae"
SRCREV_qtlanguageserver = "479a8df8b38c772438bb13ea9ca5e35f88b836bb"

View File

@ -0,0 +1,9 @@
LICENSE = "GFDL-1.3 & BSD-3-Clause & GPL-3.0-only | The-Qt-Company-Commercial"
LIC_FILES_CHKSUM = "file://LICENSE.GPL3;md5=d32239bcb673463ab874e80d47fae504"
inherit qt6-cmake
include recipes-qt/qt6/qt6-git.inc
include recipes-qt/qt6/qt6.inc
DEPENDS += "qtbase"