是否可以将 Qtcreator 目标设置为 directfb 而不是 X11
我显示输出的目标是 directfb 窗口。我需要开发一个qt应用程序。我发现在 qtcreator 中开发应用程序要容易得多,但问题是输出将在 X11 窗口上看到。谁能告诉我有没有办法让它在 directfb 窗口上执行。我在谷歌上没有搜索到这个结果。请帮助我,
我正在使用 xubuntu
谢谢
问候 拉什米
my target to display output is directfb window. i need to develop an qt application. i found developing application in qtcreator is much easier but problem is output will be seen on X11 window. can any one tell me is there way to get it executed on directfb window. i have no search results for this in google. plz help me
i am using xubuntu
thanks
regards
rashmi
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 Creator 中,您应该能够将构建目标更改为特定版本的 Qt。首先,查看模拟器目标是否适用于最新的 Creator 版本会覆盖你。如果没有,您需要下载并编译您想要的目标 Qt 嵌入式版本。然后,将该版本添加为 Qt 版本之一并 更改您的构建设置以使用该版本的 Qt。
In Creator, you should be able to change your build target to a specific version of Qt. First, see if the simulator target for recent Creator versions will cover you. If not, you'll need to download and compile the Qt embedded version you want to target. Then, add that version as one of the Qt Versions and change your build settings to use that version of Qt.
转到工具->选项->qt4
添加您在我的情况下安装的 qt 版本 qt-4.7 即,
qt4版本= qt-4.7.0
qmake 的路径是 /qt 目录的路径/bin/qmake
然后重建。
你已经完成了你想要的改变。
go to tools->options->qt4
add qt version you have installed in my case qt-4.7 i.e,
qt4 version= qt-4.7.0
path to qmake is /path to qt directory/bin/qmake
then rebuild.
you are done with changes you wanted.