Retrieving Vendor Code to build CBLite iOS

Hi,

I’m trying to build CBLite iOS 1.4.4 with Xcode and it looks like all the projects in the vendor directory are empty. I can’t find a script to populate these dependencies. Is downloading them via the web the best way to do this? Is there a way to find out which versions of these projects are being used?

Thanks,
Hua-Ying

I’ve realized they’re git submodules.

Just use the following to pull them
git submodule init
git submodule update

Or just via one command -> git submodule update --init --recursive

1 Like