Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Hosting a subset of boost used in project on github

I am using git for source control and hosting on github. We are trying to keep the repo as small as possible.

I decided to add boost to the project, which (relative to our requirements) is quite large. I have extracted a subset of the features required. Now I am a bit confused as to how to handle this on git. Should I add my subset of boost to the repository? If I add boost as a submodule, the download size is going to be a bit big (I assume, I haven't tested this).

How is this typically done?

like image 619
unohoo Avatar asked Sep 17 '12 10:09

unohoo


1 Answers

Unless you have a very good reason to do otherwise, leave boost as an external dependency. (don't add it to your repository at all).

like image 126
James Avatar answered Sep 22 '22 12:09

James