Qt configuration tool for Yocto project
-
Hi all
We want to use Qt configuration tool to configure the Qt 6.4.2 in our customized Yocto image 5.15.52.
Now we have this tool but we need to know the folder with configuration file, or what we need to insert into the file namelocal.conf
first.BTW, Qt configuration tool help could not be loaded.
/home/vmuser/图片/2024-03-15 09-56-51 的屏幕截图.pngLooking forward to your reply.
Best regards -
Qt configuration tool and local.conf are two things differents.Please tell exactly what you want to do and preferably add it in the local.conf
-
@Ronel_qtmaster
I want to add Qt plugin about sqlite, and setup the namespace for Qt library files. -
@Shen-sida then it has nothing to do with qt configuration tool.You will have to add it in the qt receipe and in local conf as well.Which step are you in?
have you cloned yocto branch already?
Did you add meta-qt receipe to yocto?
have you already built a simple image? -
@Ronel_qtmaster said in Qt configuration tool for Yocto project:
have you cloned yocto branch already?
Did you add meta-qt receipe to yocto?
have you already built a simple image?Yes, I had built the image with Qt, but there is no
sqldirvers
inplugin
.
Then I tried to addQT_CONFIG_FLAGS
in fileqtbase_git.bb
to implement it but it doesn't work.
-
@Shen-sida To enable sqlile you should just add
PACKAGECONFIG_append = " sql-sqlite" in qtbase_%.bbappend not in qtbase_git.bbqtbase_%.bbappend file is in meta-qt5 folder, under recipes-qt, then qt5
-
@Ronel_qtmaster said in Qt configuration tool for Yocto project:
PACKAGECONFIG_append = " sql-sqlite" in qtbase_%.bbappend not in qtbase_git.bb
Thanks a lot
Do we need to usePACKAGECONFIG_append = " plugin-sql-sqlite"
to be the plugin? Because we want to use the cipher sqlite plugin. -
@Shen-sida no sqlite is already the plugin
-