将配置填充到嵌套库项目

发布于 2024-12-29 01:00:47 字数 151 浏览 1 评论 0原文

我有一个主项目,其中包括一个生成 libCore.a 库的嵌套库项目。

这两个项目都有 debugrelease 两种配置。现在,如果我使用给定的配置构建主项目,如何确保它也传递到库项目?

I have a main project, which includes a nested library project which produces a libCore.a library.

Both of the projects have the two configurations debug and release. Now if I build the main project with a given configuration, how can I make sure that this is passed down to the library project as well?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

長街聽風 2025-01-05 01:00:47

让您的项目直接依赖于 libCore 项目。要实现此目的,请执行以下操作:

  1. libCore 项目文件拖到您的主项目中。有时,只有 xcodeproj 文件被移动。如果您遇到这种情况,请重新启动 XCode(我在使用 RestKit 和最新的 XCode 时也遇到过这种情况)。
  2. 第 1 点完成后,您可以浏览依赖项项目,进入目标构建阶段并将 libCore 添加为目标依赖项。
  3. 通过添加链接二进制文件与库阶段来链接到libCore.a

这是 3 个基本步骤,我不知道 libCore 是什么,如果它需要与任何其他库链接,那么您还必须将您的目标链接到这些库。

Make your project directly dependent on the libCore project. Do achieve this, do the following:

  1. Drag the libCore project file to your main project. It happens sometimes, that only the xcodeproj file is moved. If this happens to you, restart XCode (this happend to me with RestKit and the latest XCode).
  2. After point 1 is done and you can browse the dependency project, go to your target build phases and add the libCore as the target dependencies.
  3. Link against libCore.a by adding in the Link Binary with Libraries phase.

These are 3 basic steps, I don't know what the libCore is, if it needs to be linked with any other libraries then you will also have to link your target against those libraries.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文