JAHelia
JAHelia

Reputation: 7932

Import Xcode project into another project without using Source Trees

Referring to this YouTube video I want to import the FastPdfKit (which appears in the video) into a new single view project, so I can use any file I want, but without using the Source Tree method they followed in the video? Is there another method to do it?

PS. I actually do not understand why they used Source Trees to import their project into another one?

Upvotes: 0

Views: 487

Answers (2)

Paul Cezanne
Paul Cezanne

Reputation: 8741

I'm not going to watch their video so I'm guessing that the "Source Tree" method refers to the git management software, "Source Tree." (Which is really awesome free software BTW...)

A quick google search shows that you can get FastPdfKit from the github repository.

git clone https://github.com/mobfarm/FastPdfKit.git

You may want to use git "submodules" now, that's up to you.

Upvotes: 0

Ali3n
Ali3n

Reputation: 1244

if you do not want to include the whole source tree.. then you can make a static library of the souce tree then use that static library inside your project .

Upvotes: 1

Related Questions