Xcode : Adding a project as a build dependency

2020-01-27 03:01发布

Im playing around with the soundcloud api, in its instructions it says to

  • drag SoundCloudAPI.xcodeproj into your project
  • add it as a build dependency

I can drag the project in pretty easily, but how does one accomplish the next step?

7条回答
贪生不怕死
2楼-- · 2020-01-27 03:40

Just close the Project you want to add , then drag and drop the file .

查看更多
叼着烟拽天下
3楼-- · 2020-01-27 03:41

To add it as a dependency do the following:

  • Highlight the added project in your file explorer within xcode. In the directory browser window to the right it should show a file with a .a extension. There is a checkbox under the target column (target icon), check it.
  • Right-Click on your Target (under the targets item in the file explorer) and choose Get Info
  • On the general tab is a Direct Dependencies section. Hit the plus button
  • Choose the project and click Add Target
查看更多
Deceive 欺骗
4楼-- · 2020-01-27 03:41

Under TARGETS in your project, right-click on your project target (should be the same name as your project) and choose GET INFO, then on GENERAL tab you will see DIRECT DEPENDENCIES, simply click the [+] and select SoundCloudAPI.

查看更多
贼婆χ
5楼-- · 2020-01-27 03:43

Today I faced with the same problem. As the result of the first run I got next error:

Lexical or Preprocessor Issue: 'SDKProjectName*/*SDKProjectName.h' file not found.

But before running, I, obviously, added my SDK into the demo project, just drag&drop .xcodeproj file into my test project's source tree. After that, I moved into Build Phases tab in setting of the main xcodeproj file (of the demo) and added my SDK as target dependency and embed framework into corresponding tabs.

But at the result, I got an error above!

So, the problem was into empty line on the Header Search Paths option. I just wrote "../**" as value for this key and project compiled successfully. So, after that, you can add #include <SDKName/SDKName.h> into any project, which includes this SDK.

ps. My test app was created into root SDK folder.

查看更多
Deceive 欺骗
6楼-- · 2020-01-27 03:54

Tough one for a newbie like me - here is a screenshot that describes it.
Xcode 10.2.1

enter image description here

查看更多
冷血范
7楼-- · 2020-01-27 03:58
  1. drag-n-drop a project into another project - is called cross-project references[About]
  2. add the added project as a build dependency - is called Explicit dependency[About]

    Build Phases -> Target Dependencies -> + Add items 
    

In Choose items to add: dialog you will see only targets from your project and the sub-project

enter image description here

查看更多
登录 后发表回答