How do you store third party libraries in your source control?

后端 未结 15 1566
太阳男子
太阳男子 2020-12-13 03:19

How do you store third party libraries that you use in your project in your source control?

When would you store binaries in your source control?

When would

15条回答
  •  轮回少年
    2020-12-13 03:26

    Conceptually you need to store at least the binaries (and the headers if you do C/C++) That's usually the only way with third party libraries where you don't have the source.

    If you have the source you can opt to store the source and build the third party libraries in your build process.

提交回复
热议问题