将文件复制到输出项目目录的最便携方法是什么?
我想将 XML 文件复制到输出目录(调试/发布)。我不想使用资源系统来执行此操作,因为这不允许我在不重新编译的情况下修改文件。 5314464< /a> 显示了如何以可移植的方式打开文件,但我找不到复制它的好解决方案(显然我想以某种方式自动执行此操作)。像 1740534 这样的解决方案建议使用复制每个操作系统的命令但也许有更好的解决方案。
I want to copy an XML file to the output directory (debug/release). I don't want to do it using the resource system because this doesn't allow me to modify the file without recompiling. 5314464 shows how to open the file in a portable way, but I couldn't find a good solution for copying it (obviously I want to automate this somehow). Solutions like 1740534 suggest using the copy command of each operating system but perhaps there is a better solution.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试在 qmake 文件中使用 INSTALLS 关键字。 (请参阅有关安装的 QMake 参考)
完成此操作后,您将需要运行“make install”作为构建过程的一部分,以实际导致文件被复制。
Try using the INSTALLS keyword in your qmake file. (See QMake Reference on INSTALLS)
Having done this, you will need to run "make install" as part of your build process to actually cause the files to be copied.