leavez / cocoapods-binary

integrate pods in form of prebuilt frameworks conveniently, reducing compile time
MIT License
1.31k stars 206 forks source link

vendored_libraries doesn't link into MyFramework #118

Open eggswift opened 4 years ago

eggswift commented 4 years ago

I have a pod 'QSUtility', and 'QSUtility' have vendored_libraries 'libleveldb.a' 'libmemenv.a' 'libsnappy.a'.

When I embed 'QSUtility' to my project 'Testtt' with cocoapods, and build it, the 'libleveldb.a' 'libmemenv.a' 'libsnappy.a' will link to the QSUtility.framework.

image

But!

When I embed 'QSUtility' to my project 'Testtt' with cocoapods-binary, and build it, the 'libleveldb.a' 'libmemenv.a' 'libsnappy.a' will link to the Testtt project target.

image

image

I think the '.a' files should link into QSUtility.framework It seems some problem with vendored_libraries, could anyone please help me deal with it?

Thanks for your feedback!

If it's a bug: