Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Xcode how to add an external project

I need to add an external project to my Xcode project, the reason for this is I need to add a Target Dependency on that external projects static library.

I can't seem to add it in the way I need, I would like it like this:

enter image description here

However, when I add another project to my actual Xcode project I get the following which doesn't let me explore that project from my one and so I can't add the dependency I need.

enter image description here

Note that these screenshots are from two different projects, and in the one which is showing me what I want to reproduce in my own project, dragging in multiple projects works as expected.

Maybe I have some settings set up wrong in my project ? All I've done is take a template detail-master application from Xcode.

like image 481
Daniel Avatar asked Jun 14 '12 15:06

Daniel


1 Answers

You did it right. The problem is that Xcode cannot have the same project opened twice.

Close Serenity.xcodeproj before reopening your parent project.

like image 74
gcamp Avatar answered Nov 12 '22 06:11

gcamp