使用 Doxygen 在 Xcode 4 中构建文档集
如何使用 Doxygen 在 Xcode 4 中构建文档集?
Apple 的文档引用了 Xcode 3,似乎不适用于 Xcode 4。
我认为它可能必须使用架构(schemata?)而不是目标,但我不能 100% 确定。
提前致谢...
HOw do I build docsets in Xcode 4 with Doxygen?
Apple's documentation refers to Xcode 3 and doesn't seem to apply to Xcode 4.
I think it might have to use a schemas (schemata?) rather than targets, but I'm not 100% certain.
Thanks in advance...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以将文档构建为专用目标的一部分:
/Users//Library/Developer/Shared/Documentation/DocSets
文件夹中。You can build documentation as part of a dedicated target:
/Users/<YourName>/Library/Developer/Shared/Documentation/DocSets
folder.Xcode 3 的文档似乎与 Xcode 4 配合得很好。
我按照说明进行操作(请参阅文档中的“使用 Doxygen 创建 Xcode 文档集”),一切都很好摘录 Xcode 不会加载全新的文档集。
然后,我检查了给定运行脚本上的 AppleScript 命令,并在 AppleScript 编辑器上对其进行了测试:执行结果为 false。错误是缺少文档集文件的名称。
通过添加文档集文件名,AppleScript 脚本成功运行,并且文档集已很好地插入到文档中:
之前:
之后:
It seems documentation for Xcode 3 works fine with Xcode 4.
I followed instructions (see Using Doxygen to Create Xcode Documentation Sets on Documentation) and everything is fine excerpt Xcode does not load the brand new docset.
I then examined the AppleScript command on the given run script and tested it on AppleScript editor : execution result was false. Error was the name of the docset file was missing.
By adding the docset filename the AppleScript script run successfully and the docset is well inserted to documentation :
Before :
After :