将文件夹复制到 dist/
我想在分发过程中将一个充满资产的文件夹复制到可执行文件旁边。我如何在 .cabal 文件(或者,Setup.hs)中表示这一点?
目录结构:
root/
dist/ -- Generated by cabal
src/
assets/
I want to copy a folder full of assets next to my executable during distribution. How can I represent this in the .cabal file (or, alternatively, the Setup.hs)?
Directory structure:
root/
dist/ -- Generated by cabal
src/
assets/
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将它们列在您的
extra-source-files
或data-files
字段中。更多信息可以在 cabal 手册中找到,特别是 有关检索数据文件的部分。List them in your
extra-source-files
ordata-files
field. More information is available in the cabal manual, especially the section on retrieving data files.