Tarang
Tarang

Reputation: 626

Create static library in iOS with selected files

I have a library with lot of different components which are not depended on each other. I know i can create a static library and include it in a project. But is there a way I can select only particular files to be bundled into a static library. I have to handover the project to the client and I dont want to give them everything. Any idea ? Thanks

Upvotes: 0

Views: 46

Answers (1)

Gwendal Roué
Gwendal Roué

Reputation: 4044

You can create a specific target which only include the selected files, and build this target into a static library.

Upvotes: 1

Related Questions