Three20依赖问题
我查看了 Three20 源代码并尝试遵循此
指南使用该框架构建 iPhone 应用程序。在本指南中,使用了我也检查过的模板。它们应该正确编译,但出现以下错误:
File /Users/myUser/programming/third20/src/build/Debug-iphonesimulator/libThree20.a 取决于自身。该目标可能包括其自己的产品。
有人解决过这个问题吗?我读到它是关于包含一些你想要创建但不可能的东西。无论如何,我找到的任何解决方案在这里都没有帮助。
事实上我什至没有改变任何东西!有什么想法吗?
I checked out the three20 source and was trying to follow this
guide to build an iphone app using the framework. Within this guide, Templates are used which I checked out too. They ought to compile properly, but I get the following error:
File /Users/myUser/programming/three20/src/build/Debug-iphonesimulator/libThree20.a depends on itself. This target might include its own product.
Did anyone ever solve that issue? I read it was about including something you want to create which is not possible. Anyway any solution I found did not help here.
I actually did not even change anything! Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好吧,我通过打开 Three20.xcodeproj 并取消选中 libThree20.a 的目标框(同时在使用 Three20 的项目中保留其选中状态)来修复此问题。
这至少让我能够构建和运行,如果以后出现任何问题,我会报告。
Okay I fixed this by opening the three20.xcodeproj and unchecking the target box for libThree20.a (while leaving it checked in my project that is using three20).
This has at least got me building and running, will report if any problems come up later.