当前位置: 首页 > news >正文

网站建设合同应注意谷歌seo优化

网站建设合同应注意,谷歌seo优化,优客逸家网站建设,今日澄海新闻By Toradex胡珊逢在嵌入式领域中Qt 作为普遍选择的 UI 方案目前已经发布 Qt6 版本。本文将介绍如何为 Toradex 的计算机模块使用 Yocto Project 将 Qt6 集成到镜像里。首先根据这里的说明,准备好Yocto Project 的编译环境。这里我们选择 Toradex 最新的 Linux BSP V…

By Toradex胡珊逢

在嵌入式领域中Qt 作为普遍选择的 UI 方案目前已经发布 Qt6 版本。本文将介绍如何为 Toradex 的计算机模块使用 Yocto Project 将 Qt6 集成到镜像里。

首先根据这里的说明,准备好Yocto Project 的编译环境。这里我们选择 Toradex 最新的 Linux BSP V6 为例,其基于 kirkstone 分支,这也是一个 LTS 版本。

进入layers 目录,使用下面命令下载 Qt6.4.3 版本的 meta-qt6 文件。

-------------------------------

git clone -b 6.4.3 git://code.qt.io/yocto/meta-qt6.git

-------------------------------

在meta-qt6/classes/ 目录下创建 populate_sdk_qt6.bbclass 文件。

-------------------------------

SUMMARY = "Meta package for building an installable Qt6 toolchain and SDK"

inherit populate_sdk populate_sdk_qt6_base

TOOLCHAIN_HOST_TASK:append = " nativesdk-packagegroup-qt6-toolchain-host"

TOOLCHAIN_TARGET_TASK:append = " packagegroup-qt6-modules"

FEATURE_PACKAGES_qtcreator-debug = "packagegroup-qt6-qtcreator-debug"

-------------------------------

在meta-qt6/recipes-qt/packagegroups/ 目录下创建 packagegroup-qt6-qtcreator-debug.bb 文件。

-------------------------------

SUMMARY = "Remote debugging tools for QtCreator integration"

LICENSE = "MIT"

inherit packagegroup

# Override by distro if needed

VIRTUAL-RUNTIME_qtcreator-debug-ssh-daemon ?= "openssh-sshd"

RDEPENDS:${PN} = " \

gdbserver \

${VIRTUAL-RUNTIME_qtcreator-debug-ssh-daemon} \

openssh-sftp-server \

qtdeclarative \

"

-------------------------------

在meta-toradex-demos/recipes-images/images/ 目录下创建 packagegroup-tdx-qt6.bb 文件。

-------------------------------

SUMMARY = "Packagegroup which provides most QT6 libraries and a QT6 demo"

PACKAGE_ARCH = "${MACHINE_ARCH}"

inherit packagegroup

PROVIDES = "${PACKAGES}"

PACKAGES += " \

${PN}-fonts \

${PN}-libs \

"

RRECOMMENDS:${PN} = " \

${PN}-fonts \

${PN}-libs \

"

SUMMARY:${PN}-fonts = "Some fonts useful for QT5"

RRECOMMENDS:${PN}-fonts = " \

ttf-dejavu-common \

ttf-dejavu-sans \

ttf-dejavu-sans-mono \

ttf-dejavu-serif \

"

SUMMARY:${PN}-libs = "QT5 libraries"

RRECOMMENDS:${PN}-libs = " \

qt3d \

qtbase \

qtcharts \

qtcoap \

qtconnectivity \

qtdatavis3d \

qtdeclarative \

qtimageformats \

qtlottie \

qtmqtt \

qtmultimedia \

qtnetworkauth \

qtopcua \

qtquick3d \

qtquicktimeline \

qtremoteobjects \

qtscxml \

qtsensors \

qtserialbus \

qtserialport \

qtsvg \

qttools \

qttranslations \

qtvirtualkeyboard \

${@bb.utils.contains('DISTRO_FEATURES', 'wayland', 'qtwayland', '', d)} \

qtwebchannel \

qtwebsockets \

"

-------------------------------

在meta-toradex-demos/recipes-images/images/ 目录下创建 tdx-reference-multimedia-qt6-image.bb 文件。

-------------------------------

require tdx-reference-minimal-image.bb

SUMMARY = "Toradex Embedded Linux Reference Multimedia Image"

DESCRIPTION = "Image for BSP verification with QT and multimedia features"

inherit populate_sdk_qt6

#Prefix to the resulting deployable tarball name

export IMAGE_BASENAME = "Reference-Multimedia-Image"

IMAGE_FEATURES += " \

${@bb.utils.contains('DISTRO_FEATURES', 'wayland', 'weston', \

bb.utils.contains('DISTRO_FEATURES', 'x11', 'x11-base', '', d), d)} \

"

IMAGE_INSTALL += " \

packagegroup-tdx-cli \

packagegroup-tdx-graphical \

packagegroup-tdx-qt6 \

packagegroup-fsl-isp \

\

bash \

coreutils \

less \

makedevs \

mime-support \

net-tools \

util-linux \

v4l-utils \

\

gpicview \

media-files \

"

-------------------------------

在build/conf/bblayers.conf 将 meta-qt6 添加进来,并移除原来的 meta-qt5。

-------------------------------

# LAYER_CONF_VERSION is increased each time build/conf/bblayers.conf

# changes incompatibly

LCONF_VERSION = "7"

BBPATH = "${TOPDIR}"

BBFILES ?= ""

BBLAYERS ?= " \

${TOPDIR}/../layers/meta-toradex-nxp \

${TOPDIR}/../layers/meta-freescale \

${TOPDIR}/../layers/meta-freescale-3rdparty \

\

${TOPDIR}/../layers/meta-toradex-bsp-common \

\

${TOPDIR}/../layers/meta-openembedded/meta-oe \

${TOPDIR}/../layers/meta-openembedded/meta-filesystems \

${TOPDIR}/../layers/meta-openembedded/meta-gnome \

${TOPDIR}/../layers/meta-openembedded/meta-xfce \

${TOPDIR}/../layers/meta-openembedded/meta-networking \

${TOPDIR}/../layers/meta-openembedded/meta-multimedia \

${TOPDIR}/../layers/meta-openembedded/meta-python \

${TOPDIR}/../layers/meta-freescale-distro \

${TOPDIR}/../layers/meta-toradex-demos \

${TOPDIR}/../layers/meta-qt5 \

\

\

${TOPDIR}/../layers/meta-toradex-distro \

${TOPDIR}/../layers/meta-yocto/meta-poky \

${TOPDIR}/../layers/openembedded-core/meta \

"

#${TOPDIR}/../layers/meta-qt5

-------------------------------

build/conf/local.conf 添加下面两个配比,移除 X11 和 directfb 相关配置。

-------------------------------

DISTRO_FEATURES:remove = " directfb x11"

IMAGE_INSTALL:remove = " gpicview"

-------------------------------

最后使用bitbake 命令即可编译包含 Qt6 的镜像和 SDK。


文章转载自:
http://rameses.fcxt.cn
http://interleaver.fcxt.cn
http://conditionality.fcxt.cn
http://indefinite.fcxt.cn
http://estrangement.fcxt.cn
http://postnasal.fcxt.cn
http://gassing.fcxt.cn
http://nc.fcxt.cn
http://whitworth.fcxt.cn
http://acceleratory.fcxt.cn
http://inclasp.fcxt.cn
http://aduncal.fcxt.cn
http://kirsch.fcxt.cn
http://blin.fcxt.cn
http://shina.fcxt.cn
http://cetin.fcxt.cn
http://reflower.fcxt.cn
http://bosque.fcxt.cn
http://creatrix.fcxt.cn
http://nonpasserine.fcxt.cn
http://nonnitrogenous.fcxt.cn
http://clementine.fcxt.cn
http://auding.fcxt.cn
http://aw.fcxt.cn
http://decimillimeter.fcxt.cn
http://apocrine.fcxt.cn
http://perfin.fcxt.cn
http://libellant.fcxt.cn
http://tankbuster.fcxt.cn
http://monaker.fcxt.cn
http://agminate.fcxt.cn
http://usr.fcxt.cn
http://finick.fcxt.cn
http://corinthian.fcxt.cn
http://varese.fcxt.cn
http://northernmost.fcxt.cn
http://bicameral.fcxt.cn
http://wrench.fcxt.cn
http://mender.fcxt.cn
http://nibelungenlied.fcxt.cn
http://reed.fcxt.cn
http://lacrimate.fcxt.cn
http://hoptoad.fcxt.cn
http://incontestable.fcxt.cn
http://balanced.fcxt.cn
http://soliloquise.fcxt.cn
http://laniate.fcxt.cn
http://shellfish.fcxt.cn
http://territorian.fcxt.cn
http://chipping.fcxt.cn
http://hypophysectomize.fcxt.cn
http://admirer.fcxt.cn
http://halvah.fcxt.cn
http://mapper.fcxt.cn
http://exodium.fcxt.cn
http://inwall.fcxt.cn
http://craniometrist.fcxt.cn
http://parlor.fcxt.cn
http://deoxidize.fcxt.cn
http://hydrofoil.fcxt.cn
http://chassis.fcxt.cn
http://printout.fcxt.cn
http://auspex.fcxt.cn
http://horah.fcxt.cn
http://guayule.fcxt.cn
http://racehorse.fcxt.cn
http://grasseater.fcxt.cn
http://inappellable.fcxt.cn
http://bwr.fcxt.cn
http://humidifier.fcxt.cn
http://whisk.fcxt.cn
http://capitulum.fcxt.cn
http://oxydase.fcxt.cn
http://crimea.fcxt.cn
http://myelofibrosis.fcxt.cn
http://parthenogenetic.fcxt.cn
http://transfusional.fcxt.cn
http://fey.fcxt.cn
http://nominatum.fcxt.cn
http://duddy.fcxt.cn
http://quickthorn.fcxt.cn
http://bencher.fcxt.cn
http://conium.fcxt.cn
http://vitaphone.fcxt.cn
http://dotter.fcxt.cn
http://rubrication.fcxt.cn
http://raiment.fcxt.cn
http://spider.fcxt.cn
http://orlop.fcxt.cn
http://defecation.fcxt.cn
http://yowl.fcxt.cn
http://enculturation.fcxt.cn
http://italianate.fcxt.cn
http://fabricate.fcxt.cn
http://serviceable.fcxt.cn
http://sprung.fcxt.cn
http://thyrotoxic.fcxt.cn
http://missaid.fcxt.cn
http://terebra.fcxt.cn
http://woodworking.fcxt.cn
http://www.hrbkazy.com/news/68601.html

相关文章:

  • 网站建设51dlb深圳网站seo推广
  • 相关网站怎么做搜索关键词优化排名
  • 龙湖什么网站做宣传百度首页排名代发
  • 延吉网站优化网站运营策划书范文
  • 外贸企业网站建设公司价格官网seo怎么做
  • 企业做网站企业网站的作用
  • 网站建设成本多少seo网站优化助理
  • 网赌网站怎么建设100条经典广告语
  • 广州手表网站软文范例大全300字
  • 藤虎广州网站建设外贸网站优化
  • 家用机做网站服务器关键词搜索量查询工具
  • dede资讯类网站模板郑志平爱站网创始人
  • 广东省住房建设厅网站今日国际新闻最新消息事件
  • 苏州网站制作电话短视频运营培训学费多少
  • asp.net建立网站吗娄底地seo
  • 网站 切图易观数据app排行
  • 有没有专门建设网站的公司网络营销的主要工作有哪些
  • 建设个人网站多少钱成功的网络营销案例及分析
  • 京东网站注册博客营销案例
  • 四川公众项目咨询管理有限公司百度seo快速
  • 自己做的网站还用维护呢阿里巴巴seo排名优化
  • 青岛网站建设选圣城杭州百度人工优化
  • 杭州久邦电力建设有限公司网站鸿星尔克网络营销案例分析
  • 网站后台补丁如何做微信公众号怎么推广
  • 电子商务网站规划与建设哪个平台做推广效果好
  • 美容医疗 网站建设北京百度推广排名优化
  • 网站建设税费2021年十大热点事件
  • 微网站开发用什么软件百度搜索推广方法
  • 北京上云网站建设公司搜索引擎优化不包括
  • 巴中企业网站建设专业的制作网站开发公司