此文件夹:OTHER_FILES - 它不会将该文件夹发送到 DEBUG
我有一个疑问。
我有一个为我的 Qt 应用程序设计的文件
这个文件夹:OTHER_FILES
,文件:css / css.css
但是当我编译程序时,不会进入该文件夹 文件夹 DEBUG 。并且该项目找不到该文件!
有人知道如何解决这个问题吗?
我将非常感激。
谢谢。
I have a doubt.
I have a file desing for my Qt application
This folder: OTHER_FILES
, File: css / css.css
But when I compile the program does not go to that folder The folder DEBUG. And with that the project does not find the file!
Would anyone know how to fix this?
I would be very grateful.
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不完全确定我理解你的问题,但确保你的“其他”文件可用的一种方法是将它们作为资源包含:
你的 CSS 文件将被编译到你的可执行文件中,然后你可以使用类似的东西<代码>:/css/css.css。文档解释了这一切。
I'm not entirely sure I'm understanding your question, but one way to make sure your "other" files are available is to include them as resources:
Your CSS file would be compiled into your executable, and then you could read it with something like
:/css/css.css
. The documentation explains it all.