0

I have a project that contains a git submodule from another project, and, after adding the project as a dependency, and building successfully, I cannot figure out how to get the .h files from it into my project.

The subproject is not a framework, its simply another xcode project with its own .app file. The git submodule is in a folder contained in my projects top level folder so ~/Documents/MyProject/Mysubproject/

Thank you.

jscs
  • 63,694
  • 13
  • 151
  • 195
Rob Caraway
  • 3,856
  • 3
  • 30
  • 37
  • You can just add the .h files to your project, selecting "Do not copy files". That will keep them in the original folder. – Brian Oct 18 '12 at 17:33

1 Answers1

0

I solved the problem. I had to turn the subproject into a Static Cocoa Touch Library.

Rob Caraway
  • 3,856
  • 3
  • 30
  • 37